Exercises 4.1 E1

来源:互联网 发布:linux top命令进程状态 编辑:程序博客网 时间:2024/05/17 07:17

E1. Draw a diagram to illustate the configuration of linked nodes that is created by the following statements.

Node*p0=new Node('0');
Node*p1=p0->next=new Node('1');
Node*p2=p1->next=new Node('2',p1);

原创粉丝点击