首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
N920786312的代码贴
→
全部
[C语言]求这个代码的详解
单链表选首领问题
#include <stdio.h>
#include <stdlib.h>
struct node
{
int code;
struct node *next;
}NODE,*LinkList;
LinkList create_list(int n)
{
LinkList head,p;
int i;
......................
阅读全部
| 2011年10月31日 20:52
1
N920786312
全部(1)
C语言(1)