?? data_structure_seqlist.cpp
字號:
#include <iostream>
#include "seqlist.h"
using namespace std;
int main(void)
{
Sqlist la;
Sqlist lb;
ElemType a,b;
int i=0,j=0;
InitList_sq(la);
cout<<"here we will creat la, pls. input:"<<endl;
cin>>a;
while(a!=EndMark)
{
ListInsert_sq(la,++i,a);
cin>>a;
}
ListTraverse (la);
InitList_sq(lb);
cout<<"here we will creat lb, pls. input:"<<endl;
cin>>b;
while(b!=EndMark)
{
ListInsert_sq(lb,++j,b);
cin>>b;
}
ListTraverse (lb);
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -