#include<stdlib.h>
#include<stdio.h>
#include<malloc.h>
typedef struct Node {
struct Node* next;
int data;
};
Node *CreateLink()
{
Node *list = (Node*)malloc
输出单链表中所有元素
最新推荐文章于 2022-07-20 22:36:12 发布
#include<stdlib.h>
#include<stdio.h>
#include<malloc.h>
typedef struct Node {
struct Node* next;
int data;
};
Node *CreateLink()
{
Node *list = (Node*)malloc