数据结构专有名词&常见术语(中英双语)

1 篇文章 0 订阅
1 篇文章 0 订阅

数据结构的一些常见术语的中英文双语对照,很多场合都可以用到,

比如编程命名,我觉得挺有用的,就收集在这里了 --_--

目录

一. 常见术语

数据       指针       正确性       线性表                                       拓扑排序        排序           文件

二.数据结构专有名词

数据抽象          逻辑结构          基本数据类型          查找线索                前趋              数组             链表     

                        二叉树                                      查找             散列表             排序              文件


一. 常见术语

数据

数据Data
数据元素Data element
数据项Data item
数据结构Data structure
逻辑结构Logical structure
数据类型Data type

指针

指针Pointer
顺序存储结构Sequential storage structure
链状存储结构Linked storage structure
稠密索引Dense index
稀疏索引Sparse index
抽象数据类型Abstract DataType
算法Algorithm

正确性

正确性Correctness
可读性Readability
健壮性Robustness
频度Frequency count
时间复杂度Time complexity
空间复杂度Space complexity
直接前驱Immediate predecessor

线性表

线性表Linear list
顺序表Sequenatial list
单链表Singly linked list
循环链表Circylar linked lists
双向链表Double linked lists
双向循环链表Double circular linked list

Stack
栈顶Top
栈底Botton
后进先出Last In First Out
上溢Overflow
下溢Underflow
共享Shared
队列Queue
队尾Rear
队头Front
先进后出First In Last Out

String
子串Substring
模式匹配Pattern matching
数组Arrays
行为主序Row major order
列为主序Column major order
稀疏矩阵Sparse matrices
特殊矩阵Special 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
网点Network
邻结点Adjacent
Degree
出度Outdegree
入度Indegree
连通图Connected graph
连通分支Connected component
强连通图Strong graph
生成树Spanning tree
邻接矩阵Adjacency lists
邻接表Adjacency lists
邻接多重表Adjacency multilists
深度优先索引Depth-First Search
广度优先索引Breath-First Search
最小生成树Minimum spanning tree
最短路径Shortest path
有向无环图Directed acycline graph

拓扑排序

拓扑排序Topological sort
检索Searching
关键字Key
主关键字Primary key
顺序检索Sequential search
折半检索Binary search
分块检索Blocking search
平衡二叉树Best wishes alanced binary tree
平衡因子Balanced factor
直接定址Immediately allocate
除留余数法Division method
数字分析法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
锦标赛排序Tournament sort
堆排序Heap sort
归并排序Merging sort
二路归并2_way merge
多路归并Multi_way merge
基数排序Radix sorting
最低位优先(LSD) Least Significant Digit First
最高位优先(MSD) Most Significant Digit First

文件

文件Files
顺序文件Sequential file
索引文件Indexed file
索引顺序存取方法Indexed Sequential Access Method
虚拟存储存取方法Virtual Storage Access Method
散列文件Hashed file
多关键字文件With more than one key
多重表文件Multilist file
倒排文件Inverted file

 

二.数据结构专有名词

数据抽象

数据抽象data abstraction
数据元素data element
数据对象data object
数据项data item
数据类型data type
抽象数据类型abstract data type

逻辑结构

逻辑结构logical structure
物理结构phyical structure
线性结构linear structure
非线性结构nonlinear structure

基本数据类型

基本数据类型atomic data type
固定聚合数据类型fixed-aggregate data type
可变聚合数据类型variable-aggregate data type
线性表linear list
stack
队列queue
string
数组array
tree
grabh

查找线索

查找线索searching
更新updating
排序(分类)sorting
插入insertion
删除deletion

前趋

前趋predecessor
后继successor
直接前趋immediate predecessor
直接后继immediate successor
双端列表deque(double-ended queue)
循环队列cirular queue
指针pointer
先进先出表(队列)first-in first-out list
后进先出表(队列)last-in first-out list
栈底bottom
栈顶top
压入push
弹出pop
队头front
队尾rear
上溢overflow
下溢underflow

数组

数组array
矩阵matrix
多维数组multi-dimentional array
以行为主的顺序分配row major order
以列为主的顺序分配column major order
三角矩阵truangular matrix
对称矩阵symmetric matrix
稀疏矩阵sparse matrix
转置矩阵transposed matrix

链表

链表linked list
线性链表linear linked list
单链表single linked list
多重链表multilinked list
循环链表circular linked list
双向链表doubly linked list
十字链表orthogonal list
广义表generalized list

link
指针域pointer field
链域link field
头结点head node
头指针head pointer
尾指针tail pointer
string
空白(空格)串blank string
空串(零串)null string
子串substring

tree
子树subtree
森林forest
root
叶子leaf
结点node
深度depth
层次level
双亲parents
孩子children
兄弟brother
祖先ancestor
子孙descentdant

二叉树

二叉树binary tree
平衡二叉树banlanced binary tree
满二叉树full binary tree
完全二叉树complete binary tree
遍历二叉树traversing binary tree
二叉排序树binary sort tree
二叉查找树binary search tree
线索二叉树threaded binary tree
哈夫曼树Huffman tree
有序数ordered tree
无序数unordered tree
判定树decision tree
双链树doubly linked tree
数字查找树digital search tree
树的遍历traversal of tree
先序遍历preorder traversal
中序遍历inorder traversal
后序遍历postorder traversal

graph
子图subgraph
有向图digraph(directed graph)
无向图undigraph(undirected graph)
完全图complete graph
连通图connected graph
非连通图unconnected graph
强连通图strongly connected graph
弱连通图weakly connected graph
加权图weighted graph
有向无环图directed acyclic graph
稀疏图spares graph
稠密图dense graph
重连通图biconnected graph
二部图bipartite graph

edge
顶点vertex
arc
路径path
回路(环)cycle
弧头head
弧尾tail
源点source
终点destination
汇点sink
weight
连接点articulation point
初始结点initial node
终端结点terminal node
相邻边adjacent edge
相邻顶点adjacent vertex
关联边incident edge
入度indegree
出度outdegree
最短路径shortest path
有序对ordered pair
无序对unordered pair
简单路径simple path
简单回路simple cycle
连通分量connected component
邻接矩阵adjacency matrix
邻接表adjacency list
邻接多重表adjacency multilist
遍历图traversing graph
生成树spanning tree
最小(代价)生成树minimum(cost)spanning tree
生成森林spanning forest
拓扑排序topological sort
偏序partical order
拓扑有序topological order
AOV网activity on vertex network AOE
activity on edge network
关键路径critical path
匹配matching
最大匹配maximum matching
增广路径augmenting path
增广路径图augmenting path graph

查找

查找searching
线性查找(顺序查找)linear search (sequential search)
二分查找binary search
分块查找block search
散列查找hash search
平均查找长度average search length

散列表

散列表hash table
散列函数hash funticion
直接定址法immediately allocating method
数字分析法digital analysis method
平方取中法mid-square method
折叠法folding method
除法division method
随机数法random number method

排序

排序sort
内部排序internal sort
外部排序external sort
插入排序insertion sort
随小增量排序diminishing increment sort
选择排序selection sort
堆排序heap sort
快速排序quick sort
归并排序merge sort
基数排序radix sort
外部排序external sort
平衡归并排序balance merging sort
二路平衡归并排序balance two-way merging sort
多步归并排序ployphase merging sort
置换选择排序replacement selection sort

文件

文件file
主文件master file
顺序文件sequential file
索引文件indexed file
索引顺序文件indexed sequential file
索引非顺序文件indexed non-sequential file
直接存取文件direct access file
多重链表文件multilist file
倒排文件inverted file
目录结构directory structure
树型索引tree index
  • 44
    点赞
  • 221
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
### 回答1: STDf文件是被广泛使用于半导体测试行业的一种数据格式。是Semiconductor Test Data Format(半导体测试数据格式)的缩写。STDf格式文件能够存储一段时间的测试数据,包括每个芯片的测试结果、测试程序、测试条件、测试设备、测试时间等信息。 专有名词解释如下: 1. Test program(测试程序):是在芯片测试过程使用的软件程序,用于进行测试操作的自动化 2. Test Head(测试头):一种具有测试卡和传感器的设备,用于接触芯片并读取测试结果。 3. Tester(测试仪):主要用于进行半导体器件或电路测试和分析的设备 4. Device Under Test(芯片):被测量器件或电路 5. Pin(引脚):在芯片上用于连接电路的金属引脚 6. Site(测试站):测试头的一个位置,它可以用于测试一个芯片或一组芯片。 7. Scan Chain(扫描链):在芯片引导测试信号流动的序列。 8. Timing Information(时序信息):在每次测试期间记录的时间信息,用于对测试结果进行时间分析。 9. Wafer(晶圆):是芯片生产过程用于切割成芯片的大片硅晶体。 10. Test Condition(测试条件):定义了在测试过程用于设置测试参数和测试设备的规范和条件。 ### 回答2: STD(Stand Test Data Format)文件是半导体测试数据的标准格式,用于记录芯片的测试数据信息。它是一种二进制格式,通常以*.std文件扩展名表示,可被各种半导体测试设备和测试工具支持。 STD文件专有名词主要包括以下几个:Test Head,Site,Pin,Vector,Part,Wafer。其,Test Head是测试头,位于测试工站上,用于发出测试信号和接收反馈信号,控制芯片的测试过程;Site是指芯片测试站点的序号,一个芯片会有多个测试站点;Pin是指芯片的引脚,每个站点上有一个或多个引脚;Vector是测试向量,即测试程序芯片测试所需的信号序列,包含多个测试点的信号信息;Part是测试批次的名称,用于标识同一个批次的芯片;Wafer是指晶圆,即多个芯片在同一片晶圆上制造而成,测试时需要将测试向量应用到各芯片上。 除此之外,STD文件还包含如时间戳、测试程序版本、测试结果等信息,方便对芯片的测试数据进行分析和管理。STD文件的统一格式不仅可以保证测试结果的一致性和可靠性,还方便了不同测试设备和测试工具的数据转换和共享。 ### 回答3: STDF (Standard Test Data Format)文件是集成电路测试数据的标准格式。它是由Semiconductor Test Data Exchange Format Working Group(STDF WG)开发的一种二进制文件格式。这一组织的成员包括各大半导体公司和测试设备制造商。 STDF文件分为头部记录和数据记录两部分。头部记录包含了关于测试数据的基本信息,如生产、测试日期,整个文件的版本等。数据记录是针对每个被测试元件生成的测试数据,包括被测试元件的型号、序列号和被测试功能等。 STDF文件包含了一些专有名词,需要解释一下。其,WAFER(晶圆)是指在半导体制造过程,被加工的圆片状硅晶体,用于制造芯片。LOT(批次)是指在制造晶圆时,将同种型号的晶圆放在一起进行生产和测试,称为批次。首件(FIRST)指的是批量生产之前,取出一片晶圆,用于测试制造工艺是否正确。 另外,STDF文件还有元件标志(PARTID)和测试标志(TEST_NUM、TEST_FLG)等字段,用于定位被测试元件和识别产生的测试数据。 总而言之,STDF文件是记录集成电路测试数据的标准格式,通过标准化数据格式,方便各大公司之间的数据交流,促进了半导体产业的发展。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值