SDUT - 3324 顺序表应用1:多余元素删除之移位算法

#include <stdio.h> #include <stdlib.h> struct node { int *h, len, size; }; int main() { int t, n, i, j, k; scanf("%d", &t); while(t--) { scanf("%d", &n); struct nod
相关文章
相关标签/搜索