
排序
ych_ding
这个作者很懒,什么都没留下…
展开
-
快速排序
#include /* not use global namespace */ using namespace std; /* * A template parameter is a special kind of parameter that can be used to * pass a type as argument: just like regular function原创 2013-09-11 15:13:09 · 519 阅读 · 0 评论 -
POJ 1318
poj1318 #include #include #include using namespace std; //#define DEBUG struct word { char str[8]; char id[8]; int len; }; int cmp(const void *a, const void *b)/* 升序排列 */ { return *(char *)原创 2013-10-02 09:45:46 · 671 阅读 · 0 评论 -
leetcode color sort
问题描述: Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the in原创 2014-12-02 21:22:50 · 422 阅读 · 0 评论 -
简单的冒泡排序
一个简单的冒泡排序的程序 #include /* *CREATED BY ychding *DATE 2011/9/12 */ /* *以没有加标志的方式实现,如果数据已经有序就很不利 *如何进行更大规模的数据测试没有实现 */ void BubbleSort(int a[原创 2011-09-16 21:14:18 · 468 阅读 · 0 评论 -
简单插入排序
问题描述: 问题分析: 伪代码: void insert_sort(a, n) { for (j = 1; j < n;j++) { cur = a[j]; for (i = j - 1; i >= 0 && cur < a[j]; a[j + 1] = a[j], i--); a[i] = cur; } }原创 2014-12-19 16:54:19 · 391 阅读 · 0 评论