随笔分类 -  数据结构之顺序表

摘要:#include<iostream>#include<malloc.h>#include<string.h>#include<stdio.h>#define max 100using namespace std;typedef struct node{ int data[max]; int len; 阅读全文
posted @ 2017-03-15 19:31 mykonons 阅读(374) 评论(0) 推荐(0)
摘要:#include<stdio.h>#include<string.h>#include<iostream>using namespace std;int main(){int flag;int len1,len2,len3,len;string a,b,c; int j=0;string swap; 阅读全文
posted @ 2017-03-11 23:37 mykonons 阅读(299) 评论(0) 推荐(0)