2013年9月3日

链表

摘要: 题1:已知链表的头节点head,写一个函数把这个链表逆序#includeusing namespace std;typedef struct Node{ int data; struct Node *next;}Node;Node* CreatList(int n){ //创建链表 Node* L= new (Node); //(Node*)malloc(sizeof(Node)) cout>L->data; L->next=NULL; Node* p; for(int i=n-1;i>0;i--) { p= new (... 阅读全文

posted @ 2013-09-03 15:20 大浪 淘沙 阅读(224) 评论(0) 推荐(1) 编辑

导航