摘要:
#include "iostream"using namespace std;class linknode{public:linknode *next;int value;linknode();};linknode::linknode(){next = NULL;value = -1;}class linklist{public:linknode *head;int count;};class S... 阅读全文
posted @ 2009-06-05 09:33
donneyming
阅读(612)
评论(0)
推荐(0)
浙公网安备 33010602011771号