1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
| #include <stdio.h> #include <stdlib.h>
#define ERROR 0 #define OK 1 #define Overflow 2 #define Underflow 3 #define Notpresent 4 #define Duplicate 5
typedef int ElemType; typedef int Status;
typedef struct Node { ElemType elem; struct Node *link; }Node;
typedef struct { struct Node* head; int n; }Headlist;
Status Init(Headlist *L){ L->head = (Node*)malloc(sizeof(Node)); if(!L->head) return ERROR; L->head->link = NULL; L->n = 0; return OK; }
void Sort(Headlist *L){ Node *p=L->head,*pre=NULL; Node *r=p->link; p->link = NULL; p=r; while(p != NULL){ r = p->link; pre = L->head; while(pre->link != NULL && pre->link->elem < p->elem) pre = pre->link; p->link = pre->link; pre->link = p; p=r; } }
void deleleab(Headlist *L, int a,int b){ Node *q = L->head,*p=L->head->link; while( p ) if(p->elem >= a && p->elem <= b) { q->link = p->link; free(p); p = q->link; }else{ p = p->link; q = p->link; } }
Status Converse(Headlist *L) { Node *p = NULL,*cur= NULL; Node *q = L->head->link; if(L->head && L->head->link){ while( q != NULL ) { cur = q; q = q->link; L->head->link = cur; cur->link = p; p = cur; } }else return ERROR; return OK; }
Status Insert(Headlist *L,int j,ElemType x) { Node *p=NULL,*q=NULL; int i; if(j<-1 || j> L-> n-1) return ERROR; p = L->head; for(i=0;i<=j;i++) p=p->link; q = (Node *)malloc(sizeof(Node)); q->elem = x; q->link = p->link; p->link = q; L->n++; return OK; }
Status Output(Headlist L) { Node *p = L.head->link; if(!L.n) return ERROR; while(p){ printf("%d ",p->elem ); p = p->link; } return OK; }
Status Destory(Headlist *L){ Node *p=NULL; while(L->head){ p = L->head->link; free(L->head); L->head = p; } return OK; }
Status Delete(Headlist *L,int j){ Node *p = L->head,*q = L->head; int i; if(!L->n) return ERROR; if ( j<0 || j>L->n) return ERROR; for(i = 0 ;i<=j-1;i++) p = p->link; q = p; p = p->link; q->link = p->link; free(p); return OK; }
Status Find(Headlist *L,int j,ElemType *x){ Node *p= L->head; int i; if ( j<0 || j>L->n) return ERROR; for(i = 0 ;i<=j;i++) p = p->link; *x = p->elem; return OK; }
int main() { int x; Headlist list; Init(&list); Insert(&list,-1,3); Insert(&list,0,2); Insert(&list,-1,5); Insert(&list,2,7); Insert(&list,-1,1); printf("the linked list is :"); Output(list); printf("\nAfter sorted:"); Sort(&list); Output(list); printf("\nAfter Conversed:"); Converse(&list); Output(list); printf("\nAfter delete index of 0,the list is:"); Delete(&list,0); Output(list);
Find(&list,2,&x); printf("\nthe index of 2:%d\n",x);
Destory(&list); system("pause"); return 0; }
|
(一)实验中遇到的主要问题及解决方法
1.题目二,带表头的单链表在插入时出现了点问题,书上给出的方法是错的,且是C++代码。于是在尝试理解他的想法及每步Debug中终于写出了正确的代码。(L->head->link = NULL,其中L->head->data 不填)
2.题目二中带表头节点的单链表中插入时for( j=0;j<=i; j++) 和之前j<i以及删除时for( j=0;j<=i-1; j++) 和之前j<i-1有很大不同,通过debug知道了是为了略过第一个表头节点。
3.逆置过程中,为了不动表头,略过第一个表头结点时出现了点麻烦.并且在第一个元素逆置后指向NULL,第二个结点指向第一个结点时没有想明白,后来才想到了先让P=NULL,然后记录上一个结点就能达到效果了.同时还有个问题是一直没有保存原来链表的顺序,再因为P=NULL导致会访问到非法内存而程序崩溃
(二)实验心得
2.题目二中,带表头单链表和不带表头单链表,在删除和插入时的循环条件不同要注意.及初始化时带表头的L->head->link= NULL; 与 无表头的 L->first = NULL;