摘要:
#include <iostream>using namespace std;struct Info{ int nNo; char szNo[20];};struct InfoListNode{ Info info; InfoListNode *next; InfoListNode *prev;};InfoListNode *g_list = NULL;//插入队首void insertBegin(InfoListNode *pList){ g_list->next->prev = pList; pList->next = g_list->next; pLi 阅读全文
posted @ 2012-09-06 23:25
疯狂青蛙
阅读(129)
评论(0)
推荐(0)