dd
摘要:
#include <stdio.h>#include <iostream>using namespace std;#define maxsize 1000000typedef struct Num{int a[maxsize];int len;}Num;int t;void Insert_List(Num *&l){int i, n;l=new Num;cin>>n;cin>>t;for(i = 0;i<n;i++){cin>>l->a[0];if(i!=n-1){for(int j = i;j>=0;j-- 阅读全文
posted @ 2012-12-05 18:22 More study needed. 阅读(153) 评论(0) 推荐(0) 编辑