数据结构与算法常用英语词汇
更新时间:2023-12-08 14:11:01 阅读量: 教育文库 文档下载
数据结构与算法常用英语词汇.txt女人谨记:一定要吃好玩好睡好喝好。一旦累死了,就别的女人花咱的钱,住咱的 房,睡咱的老公,泡咱的男朋友,还打咱的娃。第一部分 计算机算法常用术语中英对照
Data Structures 基本数据结构 Dictionaries 字典 Priority Queues 堆
Graph Data Structures 图 Set Data Structures 集合 Kd-Trees 线段树
Numerical Problems 数值问题
Solving Linear Equations 线性方程组 Bandwidth Reduction 带宽压缩 Matrix Multiplication 矩阵乘法 Determinants and Permanents 行列式
Constrained and Unconstrained Optimization 最值问题 Linear Programming 线性规划
Random Number Generation 随机数生成
Factoring and Primality Testing 因子分解/质数判定 Arbitrary Precision Arithmetic 高精度计算 Knapsack Problem 背包问题
Discrete Fourier Transform 离散Fourier变换 Combinatorial Problems 组合问题 Sorting 排序 Searching 查找
Median and Selection 中位数
Generating Permutations 排列生成 Generating Subsets 子集生成 Generating Partitions 划分生成 Generating Graphs 图的生成 Calendrical Calculations 日期 Job Scheduling 工程安排 Satisfiability 可满足性
Graph Problems -- polynomial 图论-多项式算法 Connected Components 连通分支 Topological Sorting 拓扑排序 Minimum Spanning Tree 最小生成树 Shortest Path 最短路径
Transitive Closure and Reduction 传递闭包 Matching 匹配
Eulerian Cycle / Chinese Postman Euler回路/中国邮路 Edge and Vertex Connectivity 割边/割点 Network Flow 网络流
Drawing Graphs Nicely 图的描绘 Drawing Trees 树的描绘
Planarity Detection and Embedding 平面性检测和嵌入 Graph Problems -- hard 图论-NP问题 Clique 最大团
Independent Set 独立集 Vertex Cover 点覆盖
Traveling Salesman Problem 旅行商问题 Hamiltonian Cycle Hamilton回路 Graph Partition 图的划分 Vertex Coloring 点染色 Edge Coloring 边染色 Graph Isomorphism 同构 Steiner Tree Steiner树
Feedback Edge/Vertex Set 最大无环子图 Computational Geometry 计算几何 Convex Hull 凸包
Triangulation 三角剖分
Voronoi Diagrams Voronoi图
Nearest Neighbor Search 最近点对查询 Range Search 范围查询 Point Location 位置查询
Intersection Detection 碰撞测试 Bin Packing 装箱问题
Medial-Axis Transformation 中轴变换 Polygon Partitioning 多边形分割 Simplifying Polygons 多边形化简 Shape Similarity 相似多边形 Motion Planning 运动规划
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 有穷自动机简化 Longest Common Substring 最长公共子串 Shortest Common Superstring 最短公共父串 DP——Dynamic Programming——动态规划 recursion —— 递归
第二部分 数据结构英语词汇
数据抽象 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
正在阅读:
数据结构与算法常用英语词汇12-08
电影《邹碧华》观后感12-11
重庆科技学院毕业论文任务书范文模板08-19
高中化学第二章化学反应速率和化学平衡2.3.2化学平衡的移动教案新人教版选修05-09
声律启蒙试卷03-14
我好想拥有一只竹蜻蜓作文500字06-26
河北省秦皇岛市卢龙县中学2022-2022学年高一上学期期末数学试题04-23
第一节 压强03-20
- exercise2
- 铅锌矿详查地质设计 - 图文
- 厨余垃圾、餐厨垃圾堆肥系统设计方案
- 陈明珠开题报告
- 化工原理精选例题
- 政府形象宣传册营销案例
- 小学一至三年级语文阅读专项练习题
- 2014.民诉 期末考试 复习题
- 巅峰智业 - 做好顶层设计对建设城市的重要意义
- (三起)冀教版三年级英语上册Unit4 Lesson24练习题及答案
- 2017年实心轮胎现状及发展趋势分析(目录)
- 基于GIS的农用地定级技术研究定稿
- 2017-2022年中国医疗保健市场调查与市场前景预测报告(目录) - 图文
- 作业
- OFDM技术仿真(MATLAB代码) - 图文
- Android工程师笔试题及答案
- 生命密码联合密码
- 空间地上权若干法律问题探究
- 江苏学业水平测试《机械基础》模拟试题
- 选课走班实施方案
- 数据结构
- 英语
- 算法
- 词汇
- 常用