17-链表

链表:一系列结构连在一块儿,每个结构体变量里面都有一个指针pNext,pNext指向下一个结构体变量,尾节点的pNext指向NULL。html   静态链表:函数      struct students stu1 = { 1, "a", NULL };post struct students stu2 = { 2, "b", NULL };spa struct students stu3 = {
相关文章
相关标签/搜索