2020.8.26,链表的简单实现(没有加入清理的功能)
#include <iostream>
#include <string>
#include <stdio.h>
using namespace std;
typedef struct{
int *p;
int len;
int size;
}list;
bool initlist(list &list1,int n){
list1.p=new int[n];
list1.len=0;
list1.size=n;
return true;
原创
2020-08-26 15:52:37 ·
98 阅读 ·
0 评论