Linux
文章平均质量分 59
沙卡里巴
弱是一种罪。
展开
-
禁忌搜索解TSP问题
算法思想我就不介绍了,网上一搜一大把。原创 2015-07-14 09:42:51 · 3513 阅读 · 0 评论 -
sicily1050-Numbers & Letters
#include #include using namespace std;int num[5];int target;int finalres;bool get; void dfs(int* num, int level){ //这个if必须放在最前面(否则若把第3个if提到首,若到level4时找到了答案,根本没对finalres赋值就return掉了) //下面两个if的原创 2015-05-14 12:30:29 · 684 阅读 · 0 评论 -
matlab稀疏矩阵存储
假如说有一个矩阵A = 1, 3, 0, 0 0, 1, 0, 0 0, 0, 3, 0 0, 0, 5, 1共6个有效点。通常存储稀疏矩阵用三元组,比如c语言,原创 2015-04-18 20:11:47 · 2496 阅读 · 1 评论 -
sicily-1001 alphacode
1001. AlphacodeConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionAlice and Bob need to send secret messages to each other and are discussing ways to encode their messages:原创 2015-03-09 10:15:26 · 471 阅读 · 0 评论 -
二维数组-传参和动态内存申请
二维数组传参经常记错,写下来备忘。原创 2014-10-07 10:35:25 · 740 阅读 · 0 评论