首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴zhao72349947的代码贴全部
#include<stdio.h>
#include<string.h> 
#include <malloc.h>

struct node  //结构体 
{
       int num;   //学号 
       char name[15];  // 姓名 
       int gs;   //高数成绩 
       int yy;   //英语成绩 
       int c;     //c语言成绩 
       node *next;//指针
......................
阅读全部 | 2013年6月13日 16:27
#include<stdio.h>
#include<string.h>
#include<malloc.h>
struct node;
node *creat();//建立祖先
int add_child(node *head);//添加家庭成员
int add_brother(node *head);//添加兄弟成员
void print(node *head,char *x);//输出指定家庭成员
int beifen(node *p,char *x);//确定成员辈分
void print1(node *head);//先序遍历 输出家庭成员
void chengyuan(node *head,int s);//输出相应辈分成员
node *shanchu(node *head,char *s);//删除成员 
......................
阅读全部 | 2013年6月13日 16:20
上一页 1 2
zhao72349947