第9章 資料結構

2021-07-09 10:19:50 字數 712 閱讀 5848

第9章 資料結構

my (@frames,@button);

my %sub_of = (

"日誌查詢" => \&push_button2 ,

"溫金簡訊查詢" => \&push_button3 ,

"中均簡訊查詢" => \&push_button4 ,

"機器資訊查詢" => \&push_button5,

"ip資訊查詢" => \&push_button6,

"裝置資訊維護" => \&push_button7,

"test" => sub,

7 => sub,

8 => sub,

9 => sub,

);~

比如那些電腦科學的新芽們鬥需要學習的堆疊和佇列在perl裡都只是陣列。

9.1 陣列的陣列:

有許多種型別的巢狀資料結構,最容易做的是製作乙個陣列的陣列,也叫做兩維陣列或者矩陣。

(明顯的總結是:乙個陣列的陣列的陣列是乙個三維陣列)

9.1.1 建立和訪問乙個兩維陣列:

下面是如何把乙個兩維陣列放在一起的方法:

zjzc01:/root/big2# cat a12.pl

@aoa = (

["fred","barney"],

["george","jane","elroy"

第9章 資料結構

9.1.1 建立和訪問乙個兩維陣列 root wx03 4 cat a1.pl aoa fred barney george jane elroy homer marge bart print aoa 0 1 print n root wx03 4 perl a1.pl barney aoa 0 1...

尚矽谷資料結構 第 9 章 雜湊表

表示乙個雇員 class emp override public string tostring 建立emplinkedlist,表示鍊錶 class emplinkedlist 如果不是第乙個雇員,則使用乙個輔助的指標,幫助定位到最後 emp curemp head while true cure...

第3章 資料結構 佇列

佇列的定義 先進先出 插入在隊尾,刪除在隊頭 抽象型別定義 佇列順序儲存 出佇列 移動隊頭指標 空佇列 front rear 滿佇列 front rear 假溢位 問題 佇列有空位,但是無法存放 判斷佇列空或滿 法2 空閒單元 還有乙個空閒單元時,隊列為滿 佇列長度計算公式 rear front l...