吼,資料結構上機課1

2022-10-10 11:42:14 字數 1016 閱讀 7743

唔,好歹是學到了新東西,不慌。

#include#include

#include

#define m 20typedef

intelemtype;

typedef

struct

s s;

int inits(s &l) //

初始化int finds(s &l,int x) //

查詢

else

return i+1;}

int inserts(s &l,int i,int x) //

插入

if(i<=0||i>l.l+1)

for(j=l.l-1;j>=i-1;j--)

l.elem[i-1]=x;

l.l++;

return1;

}int deletes(s &l,int i) //

刪除

for(j=i;j1]=l.elem[j];

l.l--;

return1;

}int prints(s l) //

輸出void

main()

break

;

case3:

printf(

"請輸入刪除元素位置:");

scanf("%d

",&k);

j=deletes(l,k);

if(j!=0)

break

;

case0:

exit(

0); break

;

default

: printf(

"輸入有誤!\n");}}

}

view code

格式更加合理了叭……就

還學到了elemtype的使用嘞,不戳!

終於回憶起來我的了嘻嘻,學校機房有的登陸不上啊嘖嘖嘖,為數不多的儲存機會咯!

資料結構上機1順序表

include include define ok 1 define overflow 1 define error 0 define list init size 100 define listincrement 10typedef intelemtype typedef intstatus ty...

資料結構上機2 1

include include define maxsize 50 typedef char elemtype typedef struct sqlist 尾插法線性表 void initlist sqlist l 初始化線性表 void destroylist sqlist l 銷毀線性表 boo...

資料結構第1章上機實驗題

以下3題均採用多組輸入 1.1 輸出所有小於等於n n為乙個大於2的正整數 的素數,每行輸出10個,盡可能採用較優的演算法 源 include include using namespace std int main if j k 1 cout 程式截圖 1.3 判斷乙個字串是否是 回文 源 inc...