摘要:
http://ac.jobdu.com/problem.php?cid=1040&pid=63题目描述:对N个长度最长可达到1000的数进行排序。输入:输入第一行为一个整数N,(1
#include #include using namespace std; const int N=101;
typedef struct Node
{ char str[1003]; int len;
}Node;
Node node[N]; bool cmp(Node m1,Node m2)
{ if(m1.len!=m2.len) return m1.len<m2.len; else ... 阅读全文
posted @ 2013-03-10 00:24
cjweffort
阅读(176)
评论(0)
推荐(0)