Since 5/5/2012 2:11:22 PM, andy660 has written 6 articles and participated in 4 conversations. andy660 signature: andy660
andy660's articles:
Items(6) /1
functions in a list1242 (10/12/2008 1:46:49 AM) comp.lang.lisp (defvar *fun-table* '(("+" . #'+) ("-" . #'-) ("*" . #'*) ("/" . #'/))) (defun operate (op n1 n2) (funcall (cdr (assoc op *fun-table* :test #'string=)) n1 n2)) When I try to call the f... Andy
Learn search algorithm with lisp #2330 (6/28/2007 7:09:41 AM) comp.lang.lisp I want to learn some search algorithms such as BFS, DFS, A* and so on. I am very familiar with C++. And I can write the search programs in C+ + without any difficulty. But I have heard that Lisp is more conve... Andy
Learn search algorithm with lisp222 (6/28/2007 7:09:41 AM) comp.lang.lisp I want to learn some search algorithms such as BFS, DFS, A* and so on. I am very familiar with C++. And I can write the search programs in C+ + without any difficulty. But I have heard that Lisp is more conve... Andy
A problem about template.221 (11/25/2006 9:49:50 AM) comp.lang.c++ #include template class CList { private: typedef std::list::pointer pointer; }; when I compiled it with g++, it told me that "type 'std::list >' is not derived from type 'CList'" W... andy660
ThinkPad T22 NO SOUND136 (8/31/2006 1:12:47 PM) comp.os.linux.hardware #lspci (The result about audio) 0000:00:05.0 Multimedia audio controller: Cirrus Logic CS 4614/22/24 [CrystalClear SoundFusion Audio Accelerator] (rev 01) Subsystem: IBM: Unknown device 0153 Fl... andy660
converting string into integer924 (7/17/2006 10:22:23 PM) comp.lang.c Hi there, I want to convert a String into integer. I get the string froma file using : string argNum; getline(inputStream,argNum); I now need to convert argNum into integer. I tried to use int a = atoi(ar... priyankabhar(22)
A problem about template.221 (11/25/2006 9:49:50 AM) comp.lang.c++ #include template class CList { private: typedef std::list::pointer pointer; }; when I compiled it with g++, it told me that "type 'std::list >' is not derived from type 'CList'" W... andy660(10)
functions in a list1242 (10/12/2008 1:46:49 AM) comp.lang.lisp (defvar *fun-table* '(("+" . #'+) ("-" . #'-) ("*" . #'*) ("/" . #'/))) (defun operate (op n1 n2) (funcall (cdr (assoc op *fun-table* :test #'string=)) n1 n2)) When I try to call the f... andy660(10)