码迷,mamicode.com
首页 > 其他好文 > 详细

3.3 循环链表

时间:2015-08-26 23:49:23      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
                                                 循环单向链表
技术分享
                             图(a)添加头节点                                                                                      图(b)添加尾节点
  1. void addToTail(int el) {
  2. if (isEmpty()) {
  3. tail = new IntSLLNode(el);
  4. tail->next = tail;
  5. }
  6. else {
  7. tail->next = new IntSLLNode(el,tail->next);
  8. tail = tail->next;
  9. }
  10. }





3.3 循环链表

标签:

原文地址:http://www.cnblogs.com/star91/p/4761755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!