摘要:
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 阅读全文
摘要:
1.最长公共子序列 2.最长公共子序列(最长上升子序列写法) 3.最长上升子序列 4.最长上升子序列(二分) 阅读全文
摘要:
加法 阅读全文