編程算法常用術(shù)語中英對照

請用ctrl+f進(jìn)行搜索!

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

數(shù)據(jù) Data
數(shù)據(jù)元素 Data element
數(shù)據(jù)項 Data item
數(shù)據(jù)結(jié)構(gòu) Data structure
邏輯結(jié)構(gòu) Logical structure
數(shù)據(jù)類型 Data type
指針 Pointer
順序存儲結(jié)構(gòu) Sequential storage structure
鏈狀存儲結(jié)構(gòu) Linked storage structure
稠密索引 Dense index
稀疏索引 Sparse index
抽象數(shù)據(jù)類型 Abstract DataType
算法 Algorithm
正確性 Correctness
可讀性 Readability
健壯性 Robustness
頻度 Frequency count
時間復(fù)雜度 Time complexity
空間復(fù)雜度 Space complexity
直接前驅(qū) Immediate predecessor
直接后繼 Immediate successor
線性表 Linear list
順序表 Sequenatial list
單鏈表 Singly linked list
循環(huán)鏈表 Circylar linked lists
雙向鏈表 Double linked lists
雙向循環(huán)鏈表 Double circular linked list
棧 Stack
棧頂 Top
棧底 Botton
后進(jìn)先出 Last In First Out
上溢 Overflow
下溢 Underflow
共享 Shared
隊列 Queue
隊尾 Rear
隊頭 Front
先進(jìn)后出 First In Last Out
串 String
子串 Substring
模式匹配 Pattern matching
數(shù)組 Arrays
行為主序 Row major order
列為主序 Column major order
特殊矩陣 Special matrices
稀疏矩陣 Sparse matrices
三元組表 List of 3_tuples
十字鏈表 Orthogonal list
廣義表 Generalized lists
樹 Tree
二叉樹 Binary tree
滿二叉樹 Full binary tree
完全二叉樹 Complete binary tree
二叉排序樹 Binary sort tree
二叉搜索樹 Binary search tree
前序遍歷 Preorder traversal
中序遍歷 Inorder traversal
后序遍歷 Postorder traversal
哈夫曼樹 Huffman tree
回溯 Backtrackins
圖 Graph
有向圖 Directed graph (digraph)
無向圖 Undirected graph (undigraph)
有向完全圖 Undirected Complete Graph
無向完全圖 directed complete graph
稀疏圖 Sparse graph
稠密圖 Dense graph
網(wǎng)點(diǎn) Network
鄰結(jié)點(diǎn) Adjacent
度 Degree
出度 Outdegree
入度 Indegree
連通圖 Connected graph
連通分支 Connected component
強(qiáng)連通圖 Strong graph
生成樹 Spanning tree
鄰接矩陣 Adjacency lists
鄰接表 Adjacency lists
鄰接多重表 Adjacency multilists
深度優(yōu)先索引 Depth-First Search
廣度優(yōu)先索引 Breath-First Search
最小生成樹 Minimum spanning tree
最短路徑 Shortest path
有向無環(huán)圖 Directed acycline graph
拓?fù)渑判? Topological sort
檢索 Searching
關(guān)鍵字 Key
主關(guān)鍵字 Primary key
順序檢索 Sequential search
折半檢索 Binary search
分塊檢索 Blocking search
平衡二叉樹 Best wishes, alanced binary tree
平衡因子 Balanced factor
直接定址 Immediately allocate
除留余數(shù)法 Division method
數(shù)字分析法 Digit analysis method
折疊法 Folding method
線性探查 Linear probing
平方取中法 Mid-square method
開放定址法 Open addressing
鏈地址法 Chaining
排序 Sorting
直接插入排序 Straight insertion sort
希爾排序 Shells method
縮小增量排序 Diminishing increment sort
折半插入排序 Binary insertion sort
二路插入排序 2_way insertion sort
共享插入排序 Shared insertion sort
冒泡排序 Bubble sort
快速排序 Quick sort
選擇排序 Selection sort
直接選擇排序 Straight selection sort
樹形選擇排序 Tree selection sort
錦標(biāo)賽排序 Tournament sort
堆排序 Heap sort
歸并排序 Merging sort
二路歸并 2_way merge
多路歸并 Multi_way merge
基數(shù)排序 Radix sorting
最低位優(yōu)先(LSD) Least Significant Digit First
最高位優(yōu)先(MSD) Most Significant Digit First
文件 Files
順序文件 Sequential file
索引文件 Indexed file
索引順序存取方法 Indexed Sequential Access Method
虛擬存儲存取方法 Virtual Storage Access Method
散列文件 Hashed file
多關(guān)鍵字文件 With more than one key
多重表文件 Multilist file
倒排文件 Inverted file

2.編程算法常用術(shù)語中英對照

Data Structures 基本數(shù)據(jù)結(jié)構(gòu)
Dictionaries 字典
Priority Queues 堆
Graph Data Structures 圖
Set Data Structures 集合
Kd‐Trees 線段樹
Numerical Problems 數(shù)值問題
Solving Linear Equations 線性方程組
Bandwidth Reduction 帶寬壓縮
Matrix Multiplication 矩陣乘法
Determinants and Permanents 行列式
Constrained and Unconstrained Optimization 最值問題
Linear Programming 線性規(guī)劃
Random Number Generation 隨機(jī)數(shù)生成
Factoring and Primality Testing 因子分解/質(zhì)數(shù)判定
Arbitrary Precision Arithmetic 高精度計算
Knapsack Problem 背包問題
Discrete Fourier Transform 離散 Fourier 變換
Combinatorial Problems 組合問題
Sorting 排序
Searching 查找
Median and Selection 中位數(shù)
Generating Permutations 排列生成
Generating Subsets 子集生成
Generating Partitions 劃分生成
Generating Graphs 圖的生成
Calendrical Calculations 日期
Job Scheduling 工程安排
Satisfiability 可滿足性
Graph Problems ‐‐ polynomial 圖論‐多項式算法
Connected Components 連通分支
Topological Sorting 拓?fù)渑判?br> Minimum Spanning Tree 最小生成樹
Shortest Path 最短路徑
Transitive Closure and Reduction 傳遞閉包
Matching 匹配
Eulerian Cycle / Chinese Postman Euler 回路/中國郵路
Edge and Vertex Connectivity 割邊/割點(diǎn)
Network Flow 網(wǎng)絡(luò)流
Drawing Graphs Nicely 圖的描繪
Drawing Trees 樹的描繪
Planarity Detection and Embedding 平面性檢測和嵌入
Graph Problems ‐‐ hard 圖論‐NP 問題
Clique 最大團(tuán)
Independent Set 獨(dú)立集
Vertex Cover 點(diǎn)覆蓋
Traveling Salesman Problem 旅行商問題
Hamiltonian Cycle Hamilton 回路
Graph Partition 圖的劃分
Vertex Coloring 點(diǎn)染色
Edge Coloring 邊染色
Graph Isomorphism 同構(gòu)
Steiner Tree Steiner 樹
Feedback Edge/Vertex Set 最大無環(huán)子圖
Computational Geometry 計算幾何
Convex Hull 凸包
Triangulation 三角剖分
Voronoi Diagrams Voronoi 圖
Nearest Neighbor Search 最近點(diǎn)對查詢
Range Search 范圍查詢
Point Location 位置查詢
Intersection Detection 碰撞測試
Bin Packing 裝箱問題
Medial‐Axis Transformation 中軸變換
Polygon Partitioning 多邊形分割
Simplifying Polygons 多邊形化簡
Shape Similarity 相似多邊形
Motion Planning 運(yùn)動規(guī)劃
Maintaining Line Arrangements 平面分割
Minkowski Sum Minkowski 和
Set and String Problems 集合與串的問題
Set Cover 集合覆蓋
Set Packing 集合配置
String Matching 模式匹配
Approximate String Matching 模糊匹配
Text Compression 壓縮
Cryptography 密碼
Finite State Machine Minimization 有窮自動機(jī)簡化
Longest Common Substring 最長公共子串
Shortest Common Superstring 最短公共父串
DP——Dynamic Programming——動態(tài)規(guī)劃
recursion —— 遞歸

3.編程詞匯

A2A integration A2A 整合
abstract 抽象的
abstract base class (ABC)抽象基類
abstract class 抽象類
abstraction 抽象、抽象物、抽象性
access 存取、訪問
access level 訪問級別
access function 訪問函數(shù)
account 賬戶
action 動作
activate 激活
active 活動的
actual parameter 實(shí)參
adapter 適配器
add‐in 插件
address 地址
address space 地址空間
address‐of operator 取地址操作符
ADL (argument‐dependent lookup)
ADO(ActiveX Data Object)ActiveX 數(shù)據(jù)對象
advanced 高級的
aggregation 聚合、聚集
algorithm 算法
alias 別名
align 排列、對齊
allocate 分配、配置
allocator 分配器、配置器
angle bracket 尖括號
annotation 注解、評注
API (Application Programming Interface) 應(yīng)用(程序)編程接口
app domain (application domain)應(yīng)用域
application 應(yīng)用、應(yīng)用程序
application framework 應(yīng)用程序框架
appearance 外觀
append 附加
architecture 架構(gòu)、體系結(jié)構(gòu)
archive file 歸檔文件、存檔文件
argument 引數(shù)(傳給函式的值)。參見 parameter
array 數(shù)組
arrow operator 箭頭操作符
ASP(Active Server Page)活動服務(wù)器頁面
ASP.NET worker process ASP.NET 工作者進(jìn)程
assembly 裝配件、配件
assembly language 匯編語言
assembly manifest 裝配件清單
assert(ion) 斷言
assign 賦值
assignment 賦值、分配
assignment operator 賦值操作符
associated 相關(guān)的、相關(guān)聯(lián)的
associative container 關(guān)聯(lián)式容器(對應(yīng) sequential container)
asynchronous 異步的
atomic 原子的
atomic operation 原子操作
attribute 特性、屬性
authentication service 驗(yàn)證服務(wù)
authorization 授權(quán)
audio 音頻
A.I. 人工智能
B2B integration B2B 整合、B2B 集成(business‐to‐business integration)
background 背景、后臺(進(jìn)程)
backward compatible 向后兼容、向下兼容
backup 備份
backup device 備份設(shè)備
backup file 備份文件
bandwidth 帶寬
base class 基類
base type 基類型
batch 批處理
BCL (base class library)基類庫
binary 二進(jìn)制
binary search 二分查找
binary tree 二叉樹
binary function 雙參函數(shù)
binary large object 二進(jìn)制大對象
binary operator 二元操作符
binding 綁定
bit 位
bitmap 位圖
bitwise 按位...
bitwise copy 為單元進(jìn)行復(fù)制;位元逐一復(fù)制,按位拷
bitwise operation 按位運(yùn)算
block 塊、區(qū)塊、語句塊
bookkeeping 簿記
boolean 布林值(真假值,true 或 false)
border 邊框
bounds checking 邊界檢查
boxing 裝箱、裝箱轉(zhuǎn)換
brace (curly brace) 大括號、花括號
bracket (square brakcet) 中括號、方括號
breakpoint 斷點(diǎn)
browser applications 瀏覽器應(yīng)用(程序)
browser‐accessible application 可經(jīng)由瀏覽器訪問的應(yīng)用程序
build 編連(專指編譯和連接
built‐in 內(nèi)建、內(nèi)置
bus 總線
business 業(yè)務(wù)、商務(wù)(看場合)
business Logic 業(yè)務(wù)邏輯
business rules 業(yè)務(wù)規(guī)則
buttons 按鈕
bug 臭蟲
by/through 通過
byte 位元組(由 8 bits 組成)
cache 高速緩存
calendar 日歷
call 調(diào)用
callback 回調(diào)
call‐level interface (CLI)調(diào)用級接口(CLI)
call operator 調(diào)用操作符
candidate key 候選鍵 (數(shù)據(jù)庫)
cascading delete 級聯(lián)刪除 (數(shù)據(jù)庫)
cascading update 級聯(lián)更新 (數(shù)據(jù)庫)
casting 轉(zhuǎn)型、造型轉(zhuǎn)換
catalog 目錄
chain 鏈(function calls)
character 字符
character format 字符格式
character set 字符集
CHECK constraints CHECK 約束 (數(shù)據(jù)庫)
checkpoint 檢查點(diǎn) (數(shù)據(jù)庫)
check box 復(fù)選框
check button 復(fù)選按鈕
child class 子類
CIL (common intermediate language)通用中間語言、通用中介語言
class 類
class declaration 類聲明
class definition 類定義
class derivation list 類繼承列表
class factory 類廠
class hierarchy 類層次結(jié)構(gòu)
class library 類庫
class loader 類裝載器
class template 類模板
class template partial specializations 類模板部分特化
class template specializations 類模板特化
classification 分類
clause 子句
client application 客戶端應(yīng)用程序
client cursor 客戶端游標(biāo) (數(shù)據(jù)庫)
code page 代碼頁
cleanup 清理、清除
CLI (Common Language Infrastructure) 通用語言基礎(chǔ)設(shè)施
client 客戶、客戶端
client area 客戶區(qū)
client‐server 客戶機(jī)/服務(wù)器、客戶端/服務(wù)器
clipboard 剪貼板
clone 克隆
CLS (common language specification) 通用語言規(guī)范
code access security 代碼訪問安全
COFF (Common Object File Format) 通用對象文件格式
collection 集合
COM (Component Object Model) 組件對象模型
combo box 組合框
command line 命令行
comment 注釋
commit 提交 (數(shù)據(jù)庫)
communication 通訊
compatible 兼容
compile time 編譯期、編譯時
compiler 編譯器
component 組件
composite index 復(fù)合索引、組合索引 (數(shù)據(jù)庫)
composite key 復(fù)合鍵、組合鍵 (數(shù)據(jù)庫)
composition 復(fù)合、組合
concept 概念
concrete 具體的
concrete class 具體類
concurrency 并發(fā)、并發(fā)機(jī)制
constraint 約束 (數(shù)據(jù)庫)
configuration 配置、組態(tài)
connection 連接 (數(shù)據(jù)庫)
connection pooling 連接池
console 控制臺
constant 常量
construct 構(gòu)件、成分、概念、構(gòu)造(for language)
constructor (ctor) 構(gòu)造函數(shù)、構(gòu)造器
container 容器
containment 包容
context 環(huán)境、上下文
control 控件
copy 拷貝
CORBA(Common Object Request Broker Architecture) 通用對象請求中介架構(gòu)
cover 覆蓋、涵蓋
create/creation 創(chuàng)建、生成
crosstab query 交叉表查詢 (數(shù)據(jù)庫)
CRTP (curiously recurring template pattern)
CTS (common type system)通用類型系統(tǒng)
cube 多維數(shù)據(jù)集 (數(shù)據(jù)庫)
cursor 光標(biāo)
cursor 游標(biāo) (數(shù)據(jù)庫)
custom 定制、自定義
data 數(shù)據(jù)
data connection 數(shù)據(jù)連接 (數(shù)據(jù)庫)
Data Control Language (DCL) 數(shù)據(jù)控制語言(DCL) (數(shù)據(jù)庫)
Data Definition Language (DDL) 數(shù)據(jù)定義語言(DDL) (數(shù)據(jù)庫)
data dictionary 數(shù)據(jù)字典 (數(shù)據(jù)庫)
data dictionary view 數(shù)據(jù)字典視圖 (數(shù)據(jù)庫)
data file 數(shù)據(jù)文件 (數(shù)據(jù)庫)
data integrity 數(shù)據(jù)完整性 (數(shù)據(jù)庫)
data manipulation language (DML)數(shù)據(jù)操作語言(DML) (數(shù)據(jù)庫)
data mart 數(shù)據(jù)集市 (數(shù)據(jù)庫)
data pump 數(shù)據(jù)抽取 (數(shù)據(jù)庫)
data scrubbing 數(shù)據(jù)清理 (數(shù)據(jù)庫)
data source 數(shù)據(jù)源 (數(shù)據(jù)庫)
Data source name (DSN) 數(shù)據(jù)源名稱(DSN) (數(shù)據(jù)庫)
data warehouse 數(shù)據(jù)倉庫 (數(shù)據(jù)庫)
dataset 數(shù)據(jù)集 (數(shù)據(jù)庫)
database 數(shù)據(jù)庫 (數(shù)據(jù)庫)
database catalog 數(shù)據(jù)庫目錄 (數(shù)據(jù)庫)
database diagram 數(shù)據(jù)關(guān)系圖 (數(shù)據(jù)庫)
database file 數(shù)據(jù)庫文件 (數(shù)據(jù)庫)
database object 數(shù)據(jù)庫對象 (數(shù)據(jù)庫)
database owner 數(shù)據(jù)庫所有者 (數(shù)據(jù)庫)
database project 數(shù)據(jù)庫工程 (數(shù)據(jù)庫)
database role 數(shù)據(jù)庫角色 (數(shù)據(jù)庫)
database schema 數(shù)據(jù)庫模式、數(shù)據(jù)庫架構(gòu) (數(shù)據(jù)庫)
database script 數(shù)據(jù)庫腳本 (數(shù)據(jù)庫)
data‐bound 數(shù)據(jù)綁定 (數(shù)據(jù)庫)
data‐aware control 數(shù)據(jù)感知控件 (數(shù)據(jù)庫)
data member 數(shù)據(jù)成員、成員變量
dataset 數(shù)據(jù)集 (數(shù)據(jù)庫)
data source 數(shù)據(jù)源 (數(shù)據(jù)庫)
data structure 數(shù)據(jù)結(jié)構(gòu)
data table 數(shù)據(jù)表 (數(shù)據(jù)庫)
datagram 數(shù)據(jù)報文
DBMS (database management system)數(shù)據(jù)庫管理系統(tǒng) (數(shù)據(jù)庫)
DCOM (distributed COM)分布式 COM
dead lock 死鎖 (數(shù)據(jù)庫)
deallocate 歸還
debug 調(diào)試
debugger 調(diào)試器
decay 退化
decision support 決策支持
declaration 聲明
declarative referential integrity (DRI)聲明引用完整性(DRI) (數(shù)據(jù)庫)
deduction 推導(dǎo)
DEFAULT constraint 默認(rèn)約束 (數(shù)據(jù)庫)
default database 默認(rèn)數(shù)據(jù)庫 (數(shù)據(jù)庫)
default instance 默認(rèn)實(shí)例 (數(shù)據(jù)庫)
default result set 默認(rèn)結(jié)果集 (數(shù)據(jù)庫)
default 缺省、默認(rèn)值
defer 推遲
definition 定義
delegate 委托
delegation 委托
deploy 部署
dereference 解引用
dereference operator (提領(lǐng))運(yùn)算子
derived class 派生類
design by contract 契約式設(shè)計
design pattern 設(shè)計模式
destroy 銷毀
destructor(dtor)析構(gòu)函數(shù)、析構(gòu)器
device 設(shè)備
DHTML (dynamic HyperText Markup Language)動態(tài)超文本標(biāo)記語言
dialog 對話框
digest 摘要
digital 數(shù)字的
DIME (Direct Internet Message Encapsulation)直接 Internet 消息封裝
directive (編譯)指示符
directory 目錄
dirty pages 臟頁 (數(shù)據(jù)庫)
dirty read 臟讀 (數(shù)據(jù)庫)
disassembler 反匯編器
DISCO (Discovery of Web Services)Web Services 的查找
disk 盤
dispatch 調(diào)度、分派、派發(fā)(我喜歡“調(diào)度”)
DISPID (Dispatch Identifier)分派標(biāo)識符
distributed computing 分布式計算
distributed query 分布式查詢 (數(shù)據(jù)庫)
DNA (Distributed interNet Application) 分布式網(wǎng)間應(yīng)用程序
document 文檔
DOM (Document Object Model)文檔對象模型
dot operator (圓)點(diǎn)操作符
driver 驅(qū)動(程序)
DTD (document type definition) 文檔類型定義
double‐byte character set (DBCS)雙字節(jié)字符集(DBCS)
dump 轉(zhuǎn)儲
dump file 轉(zhuǎn)儲文件
dynamic cursor 動態(tài)游標(biāo) (數(shù)據(jù)庫)
dynamic filter 動態(tài)篩選 (數(shù)據(jù)庫)
dynamic locking 動態(tài)鎖定 (數(shù)據(jù)庫)
dynamic recovery 動態(tài)恢復(fù) (數(shù)據(jù)庫)
dynamic snapshot 動態(tài)快照 (數(shù)據(jù)庫)
dynamic SQL statements 動態(tài) SQL 語句 (數(shù)據(jù)庫)
dynamic assembly 動態(tài)裝配件、動態(tài)配件
dynamic binding 動態(tài)綁定
EAI (enterprise application integration)企業(yè)應(yīng)用程序集成(整合)
EBCO (empty base class optimization) 空基類優(yōu)化(機(jī)制)
e‐business 電子商務(wù)
EDI (Electronic Data Interchange)電子數(shù)據(jù)交換
efficiency 效率
efficient 高效
end‐to‐end authentication 端對端身份驗(yàn)證
end user 最終用戶
engine 引擎
entity 實(shí)體
encapsulation 封裝
enclosing class 外圍類別(與巢狀類別 nested class 有關(guān))
enum (enumeration) 枚舉
enumerators 枚舉成員、枚舉器
equal 相等
equality 相等性
equality operator 等號操作符
error log 錯誤日志 (數(shù)據(jù)庫)
escape code 轉(zhuǎn)義碼
escape character 轉(zhuǎn)義符、轉(zhuǎn)義字符
exclusive lock 排它鎖 (數(shù)據(jù)庫)
explicit transaction 顯式事務(wù) (數(shù)據(jù)庫)
evaluate 評估
event 事件
event driven 事件驅(qū)動的
event handler 事件處理器
evidence 證據(jù)
exception 異常
exception declaration 異常聲明
exception handling 異常處理、異常處理機(jī)制
exception‐safe 異常安全的
exception specification 異常規(guī)范
exit 退出
explicit 顯式
explicit specialization 顯式特化
export 導(dǎo)出
expression 表達(dá)式
facility 設(shè)施、設(shè)備
fat client 胖客戶端
feature 特性、特征
fetch 提取
field 字段(java)
field 字段 (數(shù)據(jù)庫)
field length 字段長度 (數(shù)據(jù)庫)
file 文件
filter 篩選 (數(shù)據(jù)庫)
finalization 終結(jié)
firewall 防火墻
finalizer 終結(jié)器
firmware 固件
flag 標(biāo)記
flash memory 閃存
flush 刷新
font 字體
foreign key (FK) 外鍵(FK) (數(shù)據(jù)庫)
form 窗體
formal parameter 形參
forward declaration 前置聲明
forward‐only 只向前的
forward‐only cursor 只向前游標(biāo) (數(shù)據(jù)庫)
fragmentation 碎片 (數(shù)據(jù)庫)
framework 框架
full specialization 完全特化
function 函數(shù)
function call operator (即 operator ()) 函數(shù)調(diào)用操作符
function object 函數(shù)對象
function overloaded resolution 函數(shù)重載決議
functionality 功能
function template 函數(shù)模板
functor 仿函數(shù)
GAC (global assembly cache) 全局裝配件緩存、全局配件緩存
GC (Garbage collection) 垃圾回收(機(jī)制)、垃圾收集(機(jī)制)
generate 生成
generic 泛化的、一般化的、通用的
generic algorithm 通用算法
genericity 泛型
getter (相對于 setter)取值函數(shù)
global 全局的
global object 全局對象
global scope resolution operator 全局范圍解析操作符
grant 授權(quán) (數(shù)據(jù)庫)
granularity 粒度
group 組、群
group box 分組框
GUI 圖形界面
GUID (Globally Unique Identifier) 全球唯一標(biāo)識符
hand shaking 握手
handle 句柄
handler 處理器
hard‐coded 硬編碼的
hard‐copy 截屏圖
hard disk 硬盤
hardware 硬件
hash table 散列表、哈希表
header file 頭文件
heap 堆
help file 幫助文件
hierarchy 層次結(jié)構(gòu)、繼承體系
hierarchical data 階層式數(shù)據(jù)、層次式數(shù)據(jù)
hook 鉤子
Host (application)宿主(應(yīng)用程序)
hot key 熱鍵
hyperlink 超鏈接
HTML (HyperText Markup Language) 超文本標(biāo)記語言
HTTP pipeline HTTP 管道
HTTP (HyperText Transfer Protocol) 超文本傳輸協(xié)議
icon 圖標(biāo)
IDE (Integrated Development Environment)集成開發(fā)環(huán)境
IDL (Interface Definition Language) 接口定義語言
identifier 標(biāo)識符
idle time 空閑時間
if and only if 當(dāng)且僅當(dāng)
IL (Intermediate Language) 中間語言、中介語言
image 圖象
IME 輸入法
immediate base 直接基類
immediate derived 直接派生類
immediate updating 即時更新 (數(shù)據(jù)庫)
implicit transaction 隱式事務(wù) (數(shù)據(jù)庫)
incremental update 增量更新 (數(shù)據(jù)庫)
index 索引 (數(shù)據(jù)庫)
implement 實(shí)現(xiàn)
implementation 實(shí)現(xiàn)、實(shí)現(xiàn)品
implicit 隱式
import 導(dǎo)入
increment operator 增加操作符
infinite loop 無限循環(huán)
infinite recursive 無限遞歸
information 信息
infrastructure 基礎(chǔ)設(shè)施
inheritance 繼承、繼承機(jī)制
inline 內(nèi)聯(lián)
inline expansion 內(nèi)聯(lián)展開
initialization 初始化
initialization list 初始化列表、初始值列表
initialize 初始化
inner join 內(nèi)聯(lián)接 (數(shù)據(jù)庫)
in‐place active 現(xiàn)場激活
instance 實(shí)例
instantiated 具現(xiàn)化、實(shí)體化(常應(yīng)用于 template)
instantiation 具現(xiàn)體、具現(xiàn)化實(shí)體(常應(yīng)用于 template)
integrate 集成、整合
integrity 完整性、一致性
integrity constraint 完整性約束 (數(shù)據(jù)庫)
interprocess communication (IPC)進(jìn)程間通訊(IPC)
interacts 交互
interface 接口
for GUI 界面
interoperability 互操作性、互操作能力
interpreter 解釋器
introspection 自省
invariants 不變性
invoke 調(diào)用
isolation level 隔離級別 (數(shù)據(jù)庫)
iterate 迭代
iterative 反復(fù)的、迭代的
iterator 迭代器
iteration 迭代(回圈每次輪回稱為一個 iteration)
item 項、條款、項目
JIT compilation JIT 編譯 即時編譯
key 鍵 (數(shù)據(jù)庫)
key column 鍵列 (數(shù)據(jù)庫)
laser 激光
late binding 遲綁定
left outer join 左向外聯(lián)接 (數(shù)據(jù)庫)
level 階、層例
high level 高階、高層
library 庫
lifetime 生命期、壽命
link 連接、鏈接
linkage 連接、鏈接
linker 連接器、鏈接器
literal constant 字面常數(shù)
list 列表、表、鏈表
list box 列表框
livelock 活鎖 (數(shù)據(jù)庫)
load 裝載、加載
load balancing 負(fù)載平衡
loader 裝載器、載入器
local 局部的
local object 局部對象
lock 鎖
log 日志
login 登錄
login security mode 登錄安全模式 (數(shù)據(jù)庫)
lookup table 查找表 (數(shù)據(jù)庫)
loop 循環(huán)
loose coupling 松散耦合
lvalue 左值
machine code 機(jī)器碼、機(jī)器代碼
macro 宏
maintain 維護(hù)
managed code 受控代碼、托管代碼
Managed Extensions 受控擴(kuò)充件、托管擴(kuò)展
managed object 受控對象、托管對象
manifest 清單
manipulator 操縱器(iostream 預(yù)先定義的一種東西)
many‐to‐many relationship 多對多關(guān)系 (數(shù)據(jù)庫)
many‐to‐one relationship 多對一關(guān)系 (數(shù)據(jù)庫)
marshal 列集
member 成員
member access operator 成員取用運(yùn)算子(有 dot 和 arrow 兩種)
member function 成員函數(shù)
member initialization list 成員初始值列表
memberwise 以 member 為單元…、members 逐一…
memory 內(nèi)存
memory leak 內(nèi)存泄漏
menu 菜單
message 消息
message based 基于消息的
message loop 消息環(huán)
message queuing 消息隊列
metadata 元數(shù)據(jù)
metaprogramming 元編程
method 方法
micro 微
middleware 中間件
middle tier 中間層
modeling 建模
modeling language 建模語言
modifier 修飾字、修飾符
modem 調(diào)制解調(diào)器
module 模塊
most derived class 最底層的派生類
mouse 鼠標(biāo)
mutable 可變的
mutex 互斥元、互斥體
multidimensional OLAP (MOLAP) 多維 OLAP(MOLAP) (數(shù)據(jù)庫)
multithreaded server application 多線程服務(wù)器應(yīng)用程序
multiuser 多用戶
multi‐tasking 多任務(wù)
multi‐thread 多線程
multicast delegate 組播委托、多點(diǎn)委托
named parameter 命名參數(shù)
named pipe 命名管道
namespace 名字空間、命名空間
native 原生的、本地的
native code 本地碼、本機(jī)碼
Native Image Generator (NGEN)本地映像生成器
nested class 嵌套類
nested query 嵌套查詢 (數(shù)據(jù)庫)
nested table 嵌套表 (數(shù)據(jù)庫)
network 網(wǎng)絡(luò)
network card 網(wǎng)卡
object 對象
object based 基于對象的
object file 目標(biāo)文件
object model 對象模型
object oriented 面向?qū)ο蟮?br> object pooling 對象池化
ODBC data source ODBC 數(shù)據(jù)源 (數(shù)據(jù)庫)
ODBC driver ODBC 驅(qū)動程序 (數(shù)據(jù)庫)
ODR (one‐definition rule)
OLE Automation objects OLE 自動化對象 (數(shù)據(jù)庫)
OLE Automation server OLE 自動化服務(wù)器 (數(shù)據(jù)庫)
OLE DB consumer OLE DB 使用者 (數(shù)據(jù)庫)
OLE DB for OLAP 用于 OLAP 的 OLE DB (數(shù)據(jù)庫)
OLE DB provider OLE DB 提供者 (數(shù)據(jù)庫)
one‐to‐many relationship 一對多關(guān)系 (數(shù)據(jù)庫)
one‐to‐one relationship 一對一關(guān)系 (數(shù)據(jù)庫)
online analytical processing (OLAP) 聯(lián)機(jī)分析處理(OLAP) (數(shù)據(jù)庫)
online redo log 聯(lián)機(jī)重做日志 (數(shù)據(jù)庫)
online transaction processing (OLTP) 聯(lián)機(jī)事務(wù)處理(OLTP) (數(shù)據(jù)庫)
Open Data Services (ODS) 開放式數(shù)據(jù)服務(wù)(ODS) (數(shù)據(jù)庫)
Open Database Connectivity (ODBC) 開放式數(shù)據(jù)庫連接(ODBC) (數(shù)據(jù)庫)
operand 操作數(shù)
operating system (OS) 操作系統(tǒng)
operation 操作
operator 操作符、運(yùn)算符
option 選項
optimizer 優(yōu)化器
outer join 外聯(lián)接 (數(shù)據(jù)庫)
overflow 上限溢位(相對于 underflow)
overhead 額外開銷
overload 重載
overload resolution 重載決議
overloaded function 重載的函數(shù)
overloaded operator 被重載的操作符
override 覆寫、重載、重新定義
package 包
packaging 打包
palette 調(diào)色板
parallel 并行
parameter 參數(shù)、形式參數(shù)、形參
parameter list 參數(shù)列表
parameterize 參數(shù)化
parent class 父類
parentheses 圓括弧、圓括號
parse 解析
parser 解析器
part 零件、部件
partial specialization 局部特化
pass by address 傳址(函式引數(shù)的傳遞方式)(非正式用語)
pass by reference 傳地址、按引用傳遞
pass by value 按值傳遞
pattern 模式
PDA (personal digital assistant)個人數(shù)字助理
PE (Portable Executable) file 可移植可執(zhí)行文件
performance 性能
persistence 持久性
PInvoke (platform invoke service) 平臺調(diào)用服務(wù)
pixel 像素
placeholder 占位符
platform 平臺
POI (point of instantiation) 具現(xiàn)點(diǎn) 實(shí)例化點(diǎn)
pointer 指針
poll 輪詢
pooling 池化
polymorphism 多態(tài)
pop up 彈出式
port 端口
postfix 后綴
precedence 優(yōu)先序(通常用于運(yùn)算子的優(yōu)先執(zhí)行次序)
prefix 前綴
preprocessor 預(yù)處理器
primary key (PK)主鍵(PK) (數(shù)據(jù)庫)
primary table 主表 (數(shù)據(jù)庫)
primary template 原始模板
primitive type 原始類型
print 打印
printer 打印機(jī)
procedure 過程
procedural 過程式的、過程化的
process 進(jìn)程
profile 評測
profiler 效能(性能)評測器
program 程序
programmer 程序員
programming 編程、程序設(shè)計
progress bar 進(jìn)度指示器
project 項目、工程
property 屬性
protocol 協(xié)議
pseudo code 偽碼
qualified 經(jīng)過資格修飾(例如加上 scope 運(yùn)算子)
qualified name
qualifier 修飾符
quality 質(zhì)量
queue 隊列
race condition 競爭條件(多線程環(huán)境常用語)
radian 弧度
radio button 單選按鈕
raise 引發(fā)(常用來表示發(fā)出一個 exception)
random number 隨機(jī)數(shù)
range 范圍、區(qū)間
rank 等級
raw 未經(jīng)處理的
readOnly 只讀
record 記錄 (數(shù)據(jù)庫)
recordset 記錄集 (數(shù)據(jù)庫
recursive 遞歸
re‐direction 重定向
refactoring 重構(gòu)
refer 引用、參考
reference 引用、參考
reference counting 引用計數(shù)
referential integrity (RI)引用完整性(RI) (數(shù)據(jù)庫)
register 寄存器
reflection 反射
refresh data 刷新數(shù)據(jù) (數(shù)據(jù)庫)
regular expression 正則表達(dá)式
relational database 關(guān)系數(shù)據(jù)庫
remote 遠(yuǎn)程
remote request 遠(yuǎn)程請求
represent 表述,表現(xiàn)
resolve 解析、決議
resolution 解析過程
result set 結(jié)果集 (數(shù)據(jù)庫)
retrieve data 檢索數(shù)據(jù)
return 返回
return type 返回類型
return value 返回值
right outer join 右向外聯(lián)接 (數(shù)據(jù)庫)
revoke 撤銷
robust 健壯
robustness 健壯性
roll back 回滾 (數(shù)據(jù)庫)
roll forward 前滾 (數(shù)據(jù)庫)
routine 例程
row 行 (數(shù)據(jù)庫)
row lock 行鎖 (數(shù)據(jù)庫)
rowset 行集 (數(shù)據(jù)庫)
RPC (remote procedure call)RPC(遠(yuǎn)程過程調(diào)用)
runtime 執(zhí)行期、運(yùn)行期、執(zhí)行時、運(yùn)行時
rvalue 右值
save 保存
savepoint 保存點(diǎn) (數(shù)據(jù)庫)
SAX (Simple API for XML)
scalable 可伸縮的、可擴(kuò)展的
schedule 調(diào)度
scheduler 調(diào)度程序
schema 模式、綱目結(jié)構(gòu)
scroll bar 滾動條
scope 作用域、生存空間
scope operator 生存空間操作符
scope resolution operator 生存空間解析操作符
screen 屏幕
SDK (Software Development Kit)軟件開發(fā)包
sealed class 密封類
search 查找
semantics 語義
semaphore 信號量
sequential container 序列式容器
server 服務(wù)器、服務(wù)端
serial 串行
serialization/serialize 序列化
server cursor 服務(wù)端游標(biāo)、服務(wù)器游標(biāo) (數(shù)據(jù)庫)
session 會話 (數(shù)據(jù)庫)
setter 設(shè)值函數(shù)
shared lock 共享鎖 (數(shù)據(jù)庫)
sibling 同級
side effect 副作用
signature 簽名
single‐threaded 單線程
slider 滑塊
slot 槽
smart pointer 智能指針
SMTP (Simple Mail Transfer Protocol) 簡單郵件傳輸協(xié)議
snapshot 截屏圖
snapshot 快照 (數(shù)據(jù)庫)
specialization 特化
specification 規(guī)范、規(guī)格
splitter 切分窗口
SOAP (simple object access protocol) 簡單對象訪問協(xié)議
software 軟件
source code 源碼、源代碼
SQL (Structured Query Language) 結(jié)構(gòu)化查詢語言 (數(shù)據(jù)庫)
stack 棧、堆棧
stack unwinding 疊輾轉(zhuǎn)開解(此詞用于 exception 主題)
standard library 標(biāo)準(zhǔn)庫
standard template library 標(biāo)準(zhǔn)模板庫
stateless 無狀態(tài)的
statement 語句、聲明
static cursor 靜態(tài)游標(biāo) (數(shù)據(jù)庫)
static SQL statements 靜態(tài) SQL 語句 (數(shù)據(jù)庫)
stored procedure 存儲過程 (數(shù)據(jù)庫)
status bar 狀態(tài)條
stream 流
string 字符串
stub 存根
subobject 子對象
subquery 子查詢 (數(shù)據(jù)庫)
subroutine 子例程
subscript operator 下標(biāo)操作符
subset 子集
subtype 子類型
support 支持
suspend 掛起
symbol 記號
syntax 語法
system databases 系統(tǒng)數(shù)據(jù)庫 (數(shù)據(jù)庫)
system tables 系統(tǒng)表 (數(shù)據(jù)庫)
table 表 (數(shù)據(jù)庫)
table lock 表鎖 (數(shù)據(jù)庫)
table‐level constraint 表級約束 (數(shù)據(jù)庫)
tape backup 磁帶備份 (數(shù)據(jù)庫)
target 標(biāo)的,目標(biāo)
task switch 工作切換
TCP (Transport Control Protocol) 傳輸控制協(xié)議
template 模板
template argument deduction 模板參數(shù)推導(dǎo)
template explicit specialization 模板顯式特化
template parameter 模板參數(shù)
template template parameter
temporary object 臨時對象
temporary table 臨時表 (數(shù)據(jù)庫)
text 文本
text file 文本文件
thin client 瘦客戶端
third‐party 第三方
thread 線程
thread‐safe 線程安全的
throw 拋出、引發(fā)(常指發(fā)出一個 exception)
token 符號、標(biāo)記、令牌(看場合)
trace 跟蹤
transaction 事務(wù) (數(shù)據(jù)庫)
transaction log 事務(wù)日志 (數(shù)據(jù)庫)
transaction rollback 事務(wù)回滾 (數(shù)據(jù)庫)
transactional replication 事務(wù)復(fù)制 (數(shù)據(jù)庫)
translation unit 翻譯單元
traverse 遍歷
trigger 觸發(fā)器 (數(shù)據(jù)庫)
two‐phase commit 兩階段提交 (數(shù)據(jù)庫)
two‐phase lookup 兩階段查找
type 類型
UDDI(Universary Description, Discovery and Integration)統(tǒng)一描述、查詢與集成
UML (unified modeling language)統(tǒng)一建模語言
unary function 單參函數(shù)
unary operator 一元操作符
unboxing 拆箱、拆箱轉(zhuǎn)換
underflow 下限溢位(相對于 overflow)
Union query 聯(lián)合查詢 (數(shù)據(jù)庫)
UNIQUE constraints UNIQUE 約束 (數(shù)據(jù)庫)
unique index 唯一索引 (數(shù)據(jù)庫)
unmanaged code 非受控代碼、非托管代碼
unmarshal 散集
unqualified 未經(jīng)限定的、未經(jīng)修飾的
URI (Uniform Resource identifier) 統(tǒng)一資源標(biāo)識符
URL (Uniform Resource Locator) 統(tǒng)一資源定位器
user 用戶
user interface 用戶界面
value types 值類型
variable 變量
vector 向量(一種容器,有點(diǎn)類似 array)
viable 可行的
video 視頻
view 視圖
VEE (Virtual Execution Engine)虛擬執(zhí)行引擎
vendor 廠商
view 視圖 (數(shù)據(jù)庫)
virtual function 虛函數(shù)
virtual machine 虛擬機(jī)
virtual memory 虛擬內(nèi)存
vowel 元音字母
Web Services web 服務(wù)
WHERE clause WHERE 子句 (數(shù)據(jù)庫)
wildcard characters 通配符字符 (數(shù)據(jù)庫)
wildcard search 通配符搜索 (數(shù)據(jù)庫)
window 窗口
window function 窗口函數(shù)
window procedure 窗口過程
Windows authentication Windows 身份驗(yàn)證
wizard 向?qū)?br> word 單詞
word processor 字處理器
wrapper 包裝、包裝器
write enable 寫啟用 (數(shù)據(jù)庫)
write‐ahead log 預(yù)寫日志 (數(shù)據(jù)庫)
write‐only 只寫
WSDL (Web Service Description Language)Web Service 描述語言
XML Message Interface (XMI) XML 消息接口
XML (eXtensible Markup Language) 可擴(kuò)展標(biāo)記語言
XSD (XML Schema Definition) XML 模式定義語言
XSL (eXtensible Stylesheet Language) 可擴(kuò)展樣式表語言
XSLT (eXtensible Stylesheet Language Transformation)可擴(kuò)展樣式表語言轉(zhuǎn)換
xxx based 基于 xxx 的
xxx oriented 面向 xxx

4.通信專業(yè)詞匯

AAL ATM Adaptation Layer ATM 適配層
AN Access Network 接入網(wǎng)
AON All Optical Network 全光網(wǎng)絡(luò)
ATM Asynchronous Transfer Mode 異步轉(zhuǎn)移模式
ATM Automatic Telling Machine 自動柜員機(jī)
BBS Bulletin Board System 公告板系統(tǒng)
BSC Base Station Controller 基站控制器
BSS Base Station Subsystem 基站子系統(tǒng)
CATV CAble TeleVision 有線電視
CDMA Code Division Multiple Access 碼分多址接入
CN Core Network 核心網(wǎng)
CP Connection Point 連接點(diǎn)
CP Content Provider 內(nèi)容供應(yīng)商
CRC Cyclic Redundancy Check 循環(huán)冗余校驗(yàn)
CS Circuit Switch 電路交換
DBA DataBase Administrator 數(shù)據(jù)庫管理程序
DDN Digital Data Network 數(shù)字?jǐn)?shù)據(jù)網(wǎng)
DHCP Dynamic Host Configuration Protocol 動態(tài)主機(jī)配置協(xié)議
DM Data Mining 數(shù)據(jù)挖掘
DNS Domain Name Server 域名服務(wù)器
DWDM Dense Wavelength Division Multiplexing 密集波分復(fù)用
EDGE Enhanced Data rates for GSM Evolution GSM 用的增強(qiáng)型數(shù)據(jù)速率
ERP Enterprise Resource Planning 企業(yè)資源計劃
FTTB Fiber To The Building 光纖到樓宇
FTTH Fiber To The Home 光纖到戶
GE Gigabit Ethernet 千兆位以太網(wǎng)
GPRS General Packet Radio Service 通用分組無線業(yè)務(wù)
GPS Global Positioning Satellite 全球定位衛(wèi)星
GPS Global Positioning System 全球定位系統(tǒng)
GW GateWay 網(wǎng)關(guān)
IMEI International Mobile Equipment Identity 國際移動設(shè)備標(biāo)識
IN Intelligent Network 智能網(wǎng)
IOC Input / Output Controller 輸入/輸出控制器
IP Intelligent Peripheral 智能外設(shè)
IP Internet Protocol 因特網(wǎng)協(xié)議
IPX Internet Packet eXchange 因特網(wǎng)分組交換
ISDN Integrated Service Digital Network 綜合業(yè)務(wù)數(shù)字網(wǎng)
ISP Internet Service Provider 因特網(wǎng)服務(wù)供應(yīng)商
LAN Local Area Network 局域網(wǎng)
MAC Multiple Access Channel 多址接入信道
TCP Transmission Control Protocol 傳輸控制協(xié)議
TDMA Time Division Multiple Access 時分多址接入

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 229,732評論 6 539
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 99,214評論 3 426
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 177,781評論 0 382
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 63,588評論 1 316
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 72,315評論 6 410
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 55,699評論 1 327
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼。 笑死,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,698評論 3 446
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 42,882評論 0 289
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 49,441評論 1 335
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 41,189評論 3 356
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 43,388評論 1 372
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,933評論 5 363
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 44,613評論 3 348
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 35,023評論 0 28
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 36,310評論 1 293
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 52,112評論 3 398
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 48,334評論 2 377

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