qsort
煦--晨
菜鸟起飞
展开
-
hdu(1862)EXCEL排序
#include #include #include struct point { int z; char x[60],y[60]; }p[100006]; int cmp1(const void *a,const void *b) { struct point *c=(struct point*)a; struct point *d=(struct point*)b; r原创 2013-08-04 15:10:02 · 556 阅读 · 0 评论 -
hdu(1031)Design T-Shirt
先把意思弄清楚就简单了。。 首先对总值从大到小排序。。 然后再在这k个数按序号从大到小排序。。 就行了。。 #include"stdio.h" #include"string.h" #include"stdlib.h" struct point { double x; int y; }a[10000]; int cmp(const void*a,const vo原创 2013-08-04 15:06:30 · 551 阅读 · 0 评论 -
hdu(1113)Word Amalgamation
思路: 先用一个函数把字典存储起来:然后把这个词典按升序排列好,最后就不用排列了。。 然后在查找的时候,把单词按升序排列好之后,就好判断了。。 #include"stdio.h" #include"string.h" #include"stdlib.h" char map[101][101]; char dp[101][101]; int k; int cmp(const vo原创 2013-08-05 15:24:54 · 616 阅读 · 0 评论