数据结构学习(C++)——单链表(定义与实现)[16]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 happycock 的 blog

       }

 

       void insertbefore(node<type> *p)

       {

              p->link = current;

              prior->link = p;

              prior = p;

       }     

      

       void lastinsert(node<type> *p)

       {

              p->link = null;

              last->link = p;

              last = p;

       }

 

       node<type> *premove()

       {     

              if (current != null && prior != null)

              {

                     node<type> *p = current;

本文关键:数据结构 C++ 单链表
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top