基本操作 8個

2021-05-12 09:35:13 字數 1041 閱讀 6488

#include

#include

#define ok 1

#define error 0

#define true 1

#define false 0

#define infeasible -1

#define overflow -2

typedef elemtype;

typedef int status;

typedef elemtype*triplet;

status inittriplet(triplet &t,elemtype v1,elemtype v2,elemtype v3);

status destroytriplet(triplet &t);

status get(triplet t,int i,elemtype &e);

status put(triplet &t,int i,elemtype e);

status isascending(triplet t);

status isdescending(triplet t);

status max(triplet t,elemtype &e);

status min(triplet t,elemtype &e);

/*基本操作(8個)*/

status inittriplet(triplet &t,elemtype v1,elemtype v2,elemtype v3)

status destroytriplet(triplet &t)

status get(triplet t,int i, elemtype &e)

status put(triplet &t,int i,elemtype e)

status isascending(triplet t)

status isdescending(triplet t)

status max(triplet t,elemtype &e)

status min(triplet t,elemtype &e)

void main()

必須掌握8個基本DOS命令

必須掌握8個基本dos命令 一,ping 它是用來檢查網路是否通暢或者網路連線速度的命令。作為乙個生活在網路上的管理員或者黑客來說,ping命令是第乙個必須掌握的dos命令,它所利用的原理是這樣的 網路上的機器都有唯一確定的ip位址,我們給目標ip位址傳送乙個資料報,對方就要返回乙個同樣大小的資料報...

Docker和k8的基本操作

docker 主要操作命令 docker images 列出當前所有的映象 docker build imagename 根據當前dockfile構建映象 docker commit containid imagename 根據容器containid構建乙個映象 docker tag imagena...

8 廣義表的建立與基本操作

採用 頭尾法 儲存廣義表,實現以下廣義表的操作 1 status createglist glist l,char s 根據字串 s 表示的廣義表內容建立廣義表資料結構 2 glist gethead glist l 取表頭運算 3 glist gettail glist l 取表尾運算 4 voi...