2020-12-28
浙商大oj——链表
题目:链表链接并插入第一位
#include <stdio.h>
#include <stdlib.h>
#include<string.h>
struct node{
int data;
struct node *next;
};
int main()
{
//输入
int n,min,i,j;
struct node* head1=(struct node*)malloc(sizeof(struct node));
struct n
原创
2020-12-28 22:48:29 ·
124 阅读 ·
0 评论