Q1143316492
Q1143316492
全部文章
未归档
归档
标签
去牛客网
登录
/
注册
Q1143316492的博客
全部文章
/ 未归档
(共2篇)
链表操作笔记
/** 链表基本操作 增,删,查,改,创建,摧毁 2016.12.7 */ #include<iostream> #include<cstdio> #include<cstring> #include<cstdlib> #include<c...
数据结构
链表
2016-12-27
0
485
双向链表笔记
双向链表增删,准备未来复习自己用 #include <bits/stdc++.h> using namespace std; typedef struct node { int data; struct node *next,*pre; }NODE; /...
数据结构
链表
2017-02-13
0
424