計算機常用英語詞匯 —— 數(shù)據(jù)結(jié)構(gòu)與算法

本文為轉(zhuǎn)載鹰贵,原文:計算機常用英語詞匯 —— 數(shù)據(jù)結(jié)構(gòu)與算法

數(shù)據(jù)結(jié)構(gòu)與算法

1. 介紹

本文將列出計算機學(xué)當(dāng)中,數(shù)據(jù)結(jié)構(gòu)與算法相關(guān)的部分常用的英語詞匯帖旨,歡迎大家前來更正補充

2. 數(shù)據(jù)結(jié)構(gòu)

2.1. 數(shù)據(jù)

數(shù)據(jù)抽象:data abstraction

數(shù)據(jù)元素:data element

數(shù)據(jù)對象:data object

數(shù)據(jù)項:data item

數(shù)據(jù)類型:data type

抽象數(shù)據(jù)類型:abstract data type

2.2. 結(jié)構(gòu)

邏輯結(jié)構(gòu):logical structure

物理結(jié)構(gòu):phyical structure

線性結(jié)構(gòu):linear structure

非線性結(jié)構(gòu):nonlinear structure

2.3. 數(shù)據(jù)類型

基本數(shù)據(jù)類型:atomic data type

固定聚合數(shù)據(jù)類型:fixd-aggregate data type

可變聚合數(shù)據(jù)類型:variable-aggregate data type

線性表:linear list

棧:stack

隊列:queue

串:string

數(shù)組:array

樹:tree

圖:gragh

2.4. 操作

查找吩坝,線索:searching

更新:updating

排序:sorting

插入:insertion

刪除:deletion

前趨:predecessor

后繼:successor

直接前趨:immediate predecessor

直接后繼:immediate successor`

雙端列表:deque (double-ended queue)

循環(huán)隊列:cirular queue

指針:pointer

先進先出表(隊列):first-in first-out list

后進先出表(隊列):last-in first out list

棧底:bottom

棧頂:top

壓入:push

彈出:pop

隊頭:front

隊尾:rear

上溢:overflow

下溢:underflow

2.5. 矩陣

數(shù)組:array

矩陣:matrix

多維數(shù)組:multi-dimentional array

以行為主的順序分配:row major order

以列為主的順序分配:column major order

三角矩陣:truangular matrix

對稱矩陣:symmetric matrix

稀疏矩陣:sparse matrix

轉(zhuǎn)置矩陣:transposed matrix

2.6. 鏈表

鏈表:linked list

線性鏈表:linear linked list

單鏈表:single linked list

多重鏈表:multilinked list

循環(huán)鏈表:circular linked list

雙向鏈表:doubly linked list

十字鏈表:orthogonal list

廣義表:generalized list

2.7. 鏈

鏈:link

指針域:pointer field

鏈域:link field

頭結(jié)點:head node

頭指針:head pointer

尾指針:tail pointer

串:string

空白(空格)串:blank string

空串(零串):null string

子串:substring

2.8. 樹

樹:tree

子樹:subtree

森林:forest

根:root

葉子:leaf

節(jié)點:node

深度:depth

層次:level

雙親:parents

孩子:children

兄弟:brother

祖先:ancestor

子孫:descentdant

2.9. 二叉樹

二叉樹:binary tree

平衡二叉樹:balanced binary tree

滿二叉樹:full binary tree

完全二叉樹:complete binary tree`

遍歷二叉樹:tracersing binary tree

二叉排序樹:binary sort tree

二叉查找樹:binary search tree

線索二叉樹:threaded binary tree

哈夫曼樹:Huffman tree

有序樹:ordered tree

無序樹:unordered tree

判定樹:decision tree

雙鏈樹:doubly linked tree

數(shù)字查找樹:digital search tree

樹的遍歷:traversal of tree

先序遍歷:preorder traversal

中序遍歷:inorder travelsal

后序遍歷:postorder travelsal

2.10. 圖

圖:graph

子圖:subgraph

有向圖:digraph (directed graph)

無向圖:undigraph (undirected graph)

完全圖:complete graph

連通圖:connected graph

非連通圖:unconnected graph

強連通圖:strongly connected graph

弱連通圖:weakly connected graph

加權(quán)圖:weighted graph

有向無環(huán)圖:directed acyclic graph

稀疏圖:spares graph

稠密圖:dense graph

重連通圖:biconnected graph

二部圖:bipartite graph

2.11. 邊

邊:edge

頂點:vertex

环锸荨:arc

路徑:path

回路(環(huán)):cycle

弧頭:head

弧尾:tail

源點:source

終點:destination

匯點:sink

權(quán):weight

連接點:articulation point

初始節(jié)點:initial node

終端節(jié)點:terminal node

相鄰邊:adjacent edge

相鄰頂點:adjacent vertex

關(guān)聯(lián)邊:incident edge

入度:indegree

出度:outdegree

最短路徑:shortest path

有序?qū)Γ?code>ordered pair

無序?qū)Γ?code>unordered pair

簡單路徑:simple path

連通分量:connected component

鄰接矩陣:adjacency matrix

鄰接表:adjacency list

鄰接多重表:adjacency multilist

遍歷圖:traversing graph

生成樹:spanning tree

最小(代價)生成樹:minimum(cost) spanning tree

生成森林:spanning forest

3. 算法

3.1. 拓撲

拓撲排序:topological sort

偏序:partical order

拓撲有序:topological order

AOV網(wǎng):activity on vertex network

AOE網(wǎng):activity on edge network

關(guān)鍵路徑:critical path

3.2. 匹配

匹配:matching

最大匹配:maximum matching

增廣路徑:augmenting matching

增廣路徑圖:augmenting path graph

3.3. 查找

查找:searching

線性查找(順序查找):linear search (sequentail search)

二分查找:binary search

分塊查找:block search

散列查找:hash search

平均查找長度:average search length

3.4. 散列表

散列表:hash table

散列函數(shù):hash funticion

直接定址法:immediately allocating method

數(shù)字分析法:digital analysis method

平方取中法:mid-square method

折疊法:folding method

除法:division method

隨機數(shù)法:random number method

3.5. 排序

排序:sort

內(nèi)部排序:internal sort

外部排序:external sort

插入排序:insertion sort

隨小增量排序:diminishing increment sort

選擇排序:selection sort

堆排序:heap sort

快速排序:quick sort

歸并排序:merge sort

基數(shù)排序:redix sort

平衡歸并排序:balance merging sort

二路平衡歸并排序:balance two-way merging sort

多步歸并排序:ployphase merging sort

置換選擇排序:replacement selection sort

3.6. 文件

文件:file

主文件:master file

順序文件:sequential file

索引文件:indexed file

索引順序文件:indexed sequential file

索引非順序文件:indexed non-sequential file

直接存取文件:direct access file

多重鏈表文件:multilist file

倒排文件:inverted file

目錄結(jié)構(gòu):directory structure

樹形索引:tree index

轉(zhuǎn)載請注明出處:計算機常用英語詞匯 —— 數(shù)據(jù)結(jié)構(gòu)與算法

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末拂封,一起剝皮案震驚了整個濱河市解幽,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌烘苹,老刑警劉巖躲株,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異镣衡,居然都是意外死亡霜定,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進店門廊鸥,熙熙樓的掌柜王于貴愁眉苦臉地迎上來望浩,“玉大人,你說我怎么就攤上這事惰说∧サ拢” “怎么了?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵吆视,是天一觀的道長典挑。 經(jīng)常有香客問我,道長啦吧,這世上最難降的妖魔是什么您觉? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任,我火速辦了婚禮授滓,結(jié)果婚禮上琳水,老公的妹妹穿的比我還像新娘肆糕。我一直安慰自己,他們只是感情好在孝,可當(dāng)我...
    茶點故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布诚啃。 她就那樣靜靜地躺著,像睡著了一般私沮。 火紅的嫁衣襯著肌膚如雪始赎。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天顾彰,我揣著相機與錄音极阅,去河邊找鬼。 笑死涨享,一個胖子當(dāng)著我的面吹牛筋搏,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播厕隧,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼奔脐,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了吁讨?” 一聲冷哼從身側(cè)響起髓迎,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎建丧,沒想到半個月后排龄,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡翎朱,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年橄维,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片拴曲。...
    茶點故事閱讀 39,688評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡争舞,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出澈灼,到底是詐尸還是另有隱情竞川,我是刑警寧澤,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布叁熔,位于F島的核電站委乌,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏者疤。R本人自食惡果不足惜福澡,卻給世界環(huán)境...
    茶點故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望驹马。 院中可真熱鬧革砸,春花似錦、人聲如沸糯累。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽泳姐。三九已至效拭,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間胖秒,已是汗流浹背缎患。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留阎肝,地道東北人挤渔。 一個月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓,卻偏偏與公主長得像风题,于是被迫代替她去往敵國和親判导。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 44,573評論 2 353

推薦閱讀更多精彩內(nèi)容