2012年5月25日

2.1.3 Sorting a Three-Valued Sequence

摘要: 刚开始我以为是道难题,后来就想直接模拟算了吧,就记录下1 2 3的个数,分成了3个区间,然后先找1区间中的2,2是从2区间到3的找,找3就从3区间到2区间的找,这样一来1区间就全部是1了,找2区间中的3就没压力了。大概思路就这样。View Code 1 #include<stdio.h> 2 #include<string.h> 3 #include<math.h> 4 #include<stdlib.h> 5 #define max(a,b) a>b?a:b 6 #define min(a,b) a>b?b:a 7 #define 阅读全文

posted @ 2012-05-25 14:08 usp10 阅读(162) 评论(0) 推荐(0) 编辑

导航