自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 黑客基地

学黑客必去的网站“黑客基地”:    http://www.hackbase.com    如何学黑客技术并从事网络安全:    http://www.hackbase.com/tech/2007-02-11/38699.html      推荐最好用的免费冰盾ARP防火墙:    http://www.hackbase.com/soft/2008-01-26/16558.ht

2008-06-09 12:09:00 507

原创 有关二叉树问题,希望有人指点下,谢谢

#include"stdlib.h"    /* 存储分配头文件,或用"malloc.h" */#include"stdio.h"     /* 标准I/O头文件 */#define NULL 0 #define MAX 100                    #define LENG sizeof(struct Bnode)  /* 确定结点所占空间的字节数 */typedef char

2007-06-09 16:52:00 563 1

原创 输入两个数列,分别以某数为结束标志,分别生成递增有序单链表;再将这两个表合并为一个递增有序单链表,输出表中各结点的值

#include #include typedef struct node{ int data; struct node *next;}node, *linklist;linklist creat( ){ node  *p, *q, *f; linklist head; int e; head = (node *)malloc(sizeof(node)); head ->next = NULL; 

2007-05-25 15:45:00 1508

原创 输入数列,以某数为结束标志, 以"后进先出" 方式生成单链表,输出表中各结点的值;再求表中首结点和尾结点的值。

#include #include typedef struct node{ int data; struct node *next;}node, linklist;node * hua_linklist( ){ linklist *L = 0 ;    printf("输入数组,生成“先进后出”的单链表。当输入9则结束输入:/n"); node *s; int x;  do{  scanf("%

2007-05-25 15:41:00 1176

原创 输入数列,以某数为结束标志,以“先进先出”方式生成单链表,输出表中各结点的值;再求表中结点的平均值、最大值、最小值。

应该可以运行,,希望可以给和我一样正在学数据结构的同学有点帮助。。愿结交正学习C的朋友一起讨论。#include #include typedef struct lnode{ int data; struct lnode *next;}lnode,linklist;lnode * hua_createlist ( ){   lnode *head, *tail, *p; int e  ;  h

2007-05-05 13:33:00 2174

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除