由买买提看人间百态
登录
首页
论坛
未名存档
话题女王
小圈子
马甲追踪
版面排名
流量曲线
水枪排名
发帖量曲线
发帖版面饼图
发帖时间柱图
关于本站
帮助
boards
本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字
访问原贴
Programming版
- how to destruct list with loop?
相关主题
●
请教一个基本的constructor和destrcutor问题
●
两个继承问题
●
[合集] question about a static pointer in a member function
●
为什么我看不懂下面的code,是不是水平还不够?
●
c++ copy reference 还是deep copy
●
C++ 弱问一个
●
这段C++程序有错吗?
●
C++疑问
●
C++: What is the difference between the two approaches?
●
two c++ interview questions! (转载)
●
a simple question for C++ class
●
请教一个作用域的问题
●
请问一个exception题目
●
私有成员不能用类成员函数修改?
●
C++里面
●
compare double to float
相关话题的讨论汇总
话题: node
话题: sll
话题: next
话题: null
话题: todel
进入Programming版参与讨论
1
(共1页)
s*w
发帖数: 729
1
#include
using namespace std;
struct node {
int val;
node* next;
node(int v):val(v),next(NULL) {}
};
struct sll {
node* head;
sll():head(NULL) {}
~sll() {
cout << "sll destructing starts here" << endl;
node* p = head;
while(p) { // i am having problems destrucing here with looped list
node* todel = p;
p = p->next;
delete todel; // i thought delete make todel NULL so it breaks loop
todel = NULL; // does this help? nonono
cout << "destructing " << p << endl;
}
cout << "sll destructed" << endl;
}
void insert(int v) {
node* p = new node(v);
p->next = head;
head = p;
}
};
int main() {
// make a loop list
sll lst;
lst.insert(5);
lst.insert(4);
lst.insert(3);
lst.insert(2);
lst.insert(1);
node *p5 = lst.head;
while(p5->next)
p5 = p5->next;
node *p3 = lst.head->next->next;
p5->next = p3;
}
1
(共1页)
进入Programming版参与讨论
相关主题
●
compare double to float
●
C++: What is the difference between the two approaches?
●
[合集] C++问题(copy constructor)
●
a simple question for C++ class
●
setjmp() and longjmp()
●
请问一个exception题目
●
关于c++的constructor的面试题
●
C++里面
●
请教一个基本的constructor和destrcutor问题
●
两个继承问题
●
[合集] question about a static pointer in a member function
●
为什么我看不懂下面的code,是不是水平还不够?
●
c++ copy reference 还是deep copy
●
C++ 弱问一个
●
这段C++程序有错吗?
●
C++疑问
相关话题的讨论汇总
话题: node
话题: sll
话题: next
话题: null
话题: todel
未名新帖统计
// 7月16日
#
版面
帖数(主题数)
-
全站
4871 (796)
1
Military
3777 (569)
2
Stock
341 (51)
3
Joke
117 (17)
4
History
116 (3)
5
Automobile
100 (9)
6
USANews
55 (9)
7
Midlife
45 (1)
8
Headline
41 (41)
9
Dreamer
33 (13)
10
FleaMarket
32 (20)
11
Living
30 (7)
* 这里只显示发帖超过25的版面,努力灌水吧:-)
历史上的今天
faintcat妹妹看进来~~
发表于12年前.
NSC, PD 1/7/2007, EB2, ...
发表于11年前.
[FBA求购]MJVE2 758 MJVM2 ...
发表于6年前.
老生常谈,归与不归
发表于10年前.
【申请】Seattle西雅图 版版主——申请人...
发表于9年前.
宝宝出生,头骨骨折,求祝福
发表于9年前.
求推荐舒缓优美的古典音乐
发表于11年前.
百分之一的北京人上北大 中国网友愤怒(转载)
发表于10年前.
新人带狗狗Bailey来报道
发表于12年前.
全世界最有价值的运动队
发表于10年前.
请问大切诺基的质量如何
发表于6年前.
TNND,军版全是BKC
发表于15年前.
Inception
发表于12年前.
微软的有些家属可真恶心,为了卖保险脸都不要了
发表于10年前.
每周坐高铁的苦逼来说说感受吧!!
发表于9年前.