自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Andes Home 千年的塔 -十年技术,风雨兼程

莫急功近利,莫浮躁短视,是你的终究会给你---andes

  • 博客(8)
  • 资源 (3)
  • 收藏
  • 关注

原创 交换排序 --C语言数据结构

 #include #include void swap(int *p1,int *p2);void bubble_sort(int *a,int n);/*函数功能:使用交换法进行排序:从小到大; 函数原型:void swap_sort(int *a,int n) 函数参数:int *a:数组名          int n :排序元素数 函数返回值:void 作者 :  李文塔 Wen

2008-08-20 09:51:00 1168

原创 归并排序 C语言数据结构

 #include #include #define N 10void merge(int *a1,int a1_start,int *a2,int a2_start,            int a2_end,int *a3,int a3_start,int a3_end);           void merge_sort(int *a,int left,int right);/*

2008-08-20 09:49:00 2747

原创 二叉树排序 --C语言数据结构

 #include #include typedef struct btree{ int data; struct btree *left; struct btree *right; }BTR,*PBTR;typedef struct BTRSt{  PBTR ptree;  struct BTRSt *link;}Stack,*PStack;PBTR Bitree=NULL;/*函数

2008-08-20 09:48:00 3370

原创 选择排序 --C语言数据结构

 #include #include void swap(int *p1,int *p2);void select_sort(int *a,int n);/*函数功能:使用选择排序法进行排序:从小到大; 函数原型:void select_sort(int *a,int n) 函数参数:int *a:数组名          int n :排序元素数 函数返回值:void 作者 :  李文塔

2008-08-20 09:45:00 2360 4

原创 基数排序 C语言数据结构

 #include #define N 10/*函数功能:求一个整数的第K位的值 函数原型:int digitk(int no,int k)函数参数:函数返回值:返回数据的位数 作者 :  李文塔 Wenta Li 日期:    2008年5月21日 11:19 */int digitk(int no,int k){  int i,j,m;  if(k==0)  {  return no%10

2008-08-20 09:44:00 2282 4

原创 冒泡排序 C数据结构

 #include #include void swap(int *p1,int *p2);void bubble_sort(int *a,int n);/*函数功能:使用冒泡法进行排序:从小到大; 函数原型:void bubble_sort(int *a,int n) 函数参数:int *a:数组名          int n :排序元素数 函数返回值:void 作者 :  李文塔 W

2008-08-20 09:42:00 6268

原创 插入排序 --C数据结构

 #include #include void swap(int *p1,int *p2);void insert_sort(int *a,int n);/*函数功能:使用插入法进行排序:从小到大; 函数原型:void insert_sort(int *a,int n) 函数参数:int *a:数组名          int n :排序元素数 函数返回值:void 作者 :  李文塔 W

2008-08-20 09:39:00 2134

原创 快速排序----C语言数据结构

#include #include void swap(int *p1,int *p2);void quick_sort(int *a,int left,int right);/*函数功能:使用快速排序法进行排序:从小到大; 函数原型:void quick_sort(int *a,int left,int right) 函数参数:int *a:数组名          int left:排

2008-08-20 09:37:00 2638

提供数据库服务的Webservices

属于学习型小程序,重在实践 webservices 的开发,部署,和使用。<br>内含源代码,和详细的说明文档。

2007-12-19

c# 图像灰度图和直方图生成

一个自己做的图像提取,及彩色图像到灰度图转化图像,和生成图像直方图,开发环境 VS2005 语言 C# 包含源代码,详细的文档说明

2007-12-19

c# 图片查看器

简单的图片浏览!类似于windows图片传真器!

2007-12-19

空空如也

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

TA关注的人

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