SDUTOJ2119:数据结构实验之链表四:有序链表的归并
原题链接
考研内容复习
链表
# include <bits/stdc++.h>
using namespace std;
struct node
{
int data;
struct node *next;
};
void Initialize(struct node **head)
{
(*head) = (struct node *)malloc(size...
原创
2019-08-06 10:01:35 ·
252 阅读 ·
0 评论