关于链表

学术版

我好弱啊啊啊啊啊啊
by Leoeight @ 2019-12-13 19:28:40


~~STL它不香吗~~
by bus_station @ 2019-12-13 19:41:14


@[gxjtxdy20081202](/user/225823) STL的链表好用吗
by Leoeight @ 2019-12-13 20:27:32


@[do_while](/user/147356) 可是出错了
by Leoeight @ 2019-12-13 21:07:21


@[Leoeight](/user/235501) 。。。
by do_while @ 2019-12-13 21:08:33


@[Leoeight](/user/235501) 调好了 ```cpp #include<bits/stdc++.h> using namespace std; struct LNode { int date; LNode *List; }; int main() { LNode *a; a=new LNode; cin>>a->date; cout<<a->date; return 0; } ```
by do_while @ 2019-12-13 21:11:39


@[do_while](/user/147356) new生成一个空间后不用删除吗
by Leoeight @ 2019-12-14 06:29:14


@[Leoeight](/user/235501) 可以不用删除
by do_while @ 2019-12-14 09:31:20


|