KLSeis

导航

 

2014年3月13日

摘要: #include using namespace std;typedef struct Sun{ int num; struct Sun* next;}Node;/*头指针:头指针所指节点的数据域往往为空或者可以存放链表长度等类似信息,其next域指向的节点才是第一个有效节点*//*用头插法和尾插法两种方式创建有头指针的单链表,返回头指针*///头插法Node* headCreate(){ Node *head = new Node; head->next = NULL; int value; std::cout>value; while ( valu... 阅读全文
posted @ 2014-03-13 21:09 KLSeis 阅读(193) 评论(0) 推荐(0) 编辑