- 博客(1)
- 收藏
- 关注
原创 2021-03-25
考研数据结构复习日记。3.25:链表代码练笔。王道书目链表章。附上本人的代码。可供各位在复习数据结构时手动跑写代码。#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>#include<stdlib.h>#define Maxsize 50typedef struct node{ int data; struct node* next;}node, *linklist;int length(l...
2021-03-25 17:00:13
66
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人