2012年4月17日
摘要: View Code /* Name: 字符串处理+排序 Copyright: Author: Try86 Date: 17/04/12 07:12 Description: */#include <cstdio>#include <cstring>#include <cstdlib>#include <iostream>using namespace std;const int N = 505;int num[N];int cmp(const void *a, const void *b) { return *(int *)a - *(int * 阅读全文
posted @ 2012-04-17 19:49 Try86 阅读(145) 评论(0) 推荐(0)