摘要:
带头结点的单链表的初始化、插入、删除、查询长度和输出元素,源码如下: 1 #include<stdio.h> 2 #include<math.h> 3 #include<stdlib.h> 4 #include<malloc.h> 5 6 #define MAXSIZE 10 //定义顺序表最大长度 阅读全文
摘要:
原因:语法错误,和其它语言语法混用。 printf("链表长度 : %d \n",length); printf("length is : %d \n",length); 才是正确语法。 阅读全文