摘要: 贪心基本题, 有助于理解贪心算法的思想 #include <cstdio> #include <algorithm> using namespace std; struct Program { int begin, end; } programs[100]; /** 贪心: 贪心算法的基本步骤 : 阅读全文
posted @ 2015-04-08 23:24 Spiderman.L 阅读(249) 评论(0) 推荐(0) 编辑