自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (1)
  • 收藏
  • 关注

原创 快速排序(迭代)——ANSI C实现

typedef int ElementType; /* * 分区信息结点(组成单链表) * * */ typedef struct PartitionNode PartitionNode; struct PartitionNode { int low; int high; PartitionNode *next; }; /* * 由存放分区信息的单链表

2012-10-30 19:35:49 1762 1

原创 二路归并排序(迭代)——ANSI C实现

typedef int ElementType;   /* * 将两个数组有序归并到一个数组中 * * 输入参数1:第一个数组 * 输入参数2:第一个数组的尺寸 * 输入参数3:第二个数组 * 输入参数4:第二个数组的尺寸 * * 返回类型:有序归并后的新数组 * * */ void MergeArray(ElementType *arr1, in

2012-10-30 10:13:07 913

原创 堆排序——ANSI C实现

typedef int ElementType;   /* 利用中间变量的交换算法 */ void Swap(ElementType *a, ElementType *b) { ElementType temp; temp = *a; *a = *b; *b = temp; } /* * 在控制台打印数组(整数) * * */ void PrintA

2012-10-29 09:17:29 901 4

OpenStack术语表

These terms and definitions offer a basic glossary for words and phrases related to OpenStack. You can add to this glossary by forking the openstack-manuals repository on github.com and updating the source files through the OpenStack contribution process.

2013-01-22

空空如也

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

TA关注的人

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