上一页 1 ··· 17 18 19 20 21
摘要: 12.链表 1)(单链表) #include<stdio.h> const int nill=-1; const int head=0; struct my{ int next; int zhi; }; struct mylist{ my a[100000]; int n; int getpos(i 阅读全文
posted @ 2017-09-23 21:48 lmjer 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1.最长公共子序列 2.最长公共子序列(最长上升子序列写法) 3.最长上升子序列 4.最长上升子序列(二分) 阅读全文
posted @ 2017-09-23 21:41 lmjer 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 加法 阅读全文
posted @ 2017-09-23 21:38 lmjer 阅读(154) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21