新手之C语言构建单链表难点笔记

一、源代码如下 #include<stdio.h> #include<stdlib.h> typedef struct dxs { int data; struct dxs *next; }NODE; NODE *Creatlink(int n, int m) //实现单链表的创建 { NODE *h = NULL, *p, *s; int i;
相关文章
相关标签/搜索