干了老铁奥利给
干了老铁奥利给
全部文章
题解
归档
标签
去牛客网
登录
/
注册
干了老铁奥利给的博客
全部文章
/ 题解
(共1篇)
题解 | 链表
#include using namespace std; typedef struct list{ int data; list *next; }list; list *Init_list(list *L)//链表初始化 { L=(list*) malloc(sizeof(list)...
C++
2022-06-24
2
337