首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
chenmeng1992的代码贴
→
C语言
[C语言]这是数据结构删除操作,请各位高手改正一下!!
#include<iostream.h>
#include<malloc.h>
struct W{
int x;
W *next;
};
void main(){
W *q;
W *head;
W *s;
W *a;
head=(W *)malloc(sizeof(W));
......................
阅读全部
| 2012年12月3日 18:24
1
chenmeng1992
全部(1)
C语言(1)