自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Tree头文件

#ifndef BINARY_TREE_H#define BINARY_TREE_H#include#define MAX 100using namespace std;typedef struct Bitree{   int data;   struct Bitree *lchild,*rchild;}Binode,*bitree;typedef bitr

2010-12-27 09:48:00 1042

原创 折半查找,冒泡排序

#include#includeusing namespace std;int search(int s[],int n,int key){ int low=0;int high=n-1; int mid; while(low { mid=(low+high)/2; if(s[mid]==key)  return s[mid]; else if(s[mi

2010-12-05 22:25:00 476 1

原创 链表

#include#include "stdlib.h"#define NULL 0 typedef struct LNode{ int data; struct LNode *next;}LNode;typedef struct LNode LinkList; Create_List(void){LinkList *L; int data; Link

2010-10-17 11:10:00 382

原创 C语言

<br /><br />#include<stdio.h><br />#include<malloc.h><br />struct stu<br />{int num;<br />struct stu *next;<br />} ;<br />struct stu *creat(void)<br />{int temp; struct stu *p1,*p2;<br />struct stu *head=NULL;<br />printf("/n input number:");<br />while(sc

2010-09-08 17:50:00 309

原创 C语言

<br /><br />#include<stdio.h><br />#include<malloc.h><br />struct stu<br />{int num;<br />struct stu *next;<br />} ;<br />struct stu *creat(void)<br />{int temp; struct stu *p1,*p2;<br />struct stu *head=NULL;<br />printf("/n input number:");<br />while(sc

2010-09-08 17:50:00 220

原创 C语言

<br /><br />#include<stdio.h><br />#include<malloc.h><br />struct stu<br />{int num;<br />struct stu *next;<br />} ;<br />struct stu *creat(void)<br />{int temp; struct stu *p1,*p2;<br />struct stu *head=NULL;<br />printf("/n input number:");<br />while(sc

2010-09-08 17:50:00 231

原创 C语言

<br /><br />#include<stdio.h><br />#include<malloc.h><br />struct stu<br />{int num;<br />struct stu *next;<br />} ;<br />struct stu *creat(void)<br />{int temp; struct stu *p1,*p2;<br />struct stu *head=NULL;<br />printf("/n input number:");<br />while(sc

2010-09-08 17:50:00 248

原创 帮帮忙看看

2010-05-19 22:23:00 377

原创 C语言

我学的专业是计算机专业,在大一我认识了C语言,但是我对C语言的学习很不透彻,我很郁闷,我的前辈告诉我C语言很重要,尤其是指针的学习,所以我一直不放弃

2010-05-13 12:49:00 265

空空如也

空空如也

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

TA关注的人

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