摘要: 简单排序View Code //poj1007#include <iostream>#include <algorithm>#include <string>using namespace std;const int maxn = 101;struct item{ string sequence; int unsort;}dna[maxn];int n, m;bool operator<(item a, item b){ return a.unsort < b.unsort;}int calculate(string s... 阅读全文
posted @ 2012-12-03 14:39 undefined2024 阅读(174) 评论(0) 推荐(0)