摘要: 插入的数目为num,如果比head小,则插在链表头;如果比链表中元素都大,则插在结尾;否则插在链表中;代码如下: 1 Link* Link::Add(Link* pLink, int num) { 2 Link *p1,*p2; 3 p1 = pLink; 4 Link *p... 阅读全文
posted @ 2014-08-28 16:55 依然冷月 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 代码实现: 1 Link * Link::remove(Link* pLink, int num) { 2 Link *p1,*p2; 3 p1 = pLink; 4 // 查找需要删除的链表的节点 5 while((p1->id != num) && (p1... 阅读全文
posted @ 2014-08-28 15:30 依然冷月 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 利用类实现链表的创建 1 #include 2 3 using namespace std; 4 5 class Link { 6 public: 7 Link() {} 8 Link *_pNext; 9 void Create();10 void Output... 阅读全文
posted @ 2014-08-28 14:37 依然冷月 阅读(302) 评论(0) 推荐(0) 编辑