浙大数据结构期末考试2007-2008

合集下载

07-08数据结构试题和答案

07-08数据结构试题和答案

07-08数据结构试题和答案浙江⼤学2007–2008学年秋季学期《数据结构基础》课程期末考试试卷开课学院:软件院、计算机、竺可桢学院,考试形式:闭卷,允许带_ ⽆⼊场考试时间:_2007_年_11_⽉_17⽇, 所需时间:120 分钟考⽣姓名: ___学号:专业: ____教师:Answer SheetNOTE: Please write your answers on the answer sheet.注意:请将答案填写在答题纸上。

I. Please select the answer for the following problems. (20 points)(1)The time complexity of the following piece of code is (2 points) for(i=0; ifor(j=i; j>0; j/=2)printf(“%d\n”, j);a. O(n)b. O(n*n)c. O(nlogn)d. O(n*i)(2)Suppose that the time complexities of two programs are given by T1(N)=O(f(N))and T2(N)=O(f(N)). Which of the following equations is true? (2 points) a. T1(N)+T2(N)=O(f(N)) b. T1(N)-T2(N)=o(f(N))c. T1(N)/T2(N)=O(1)d. T1(N)=O(T2(N))(3)Given an empty stack S and an empty queue Q. A list of characters are pushedinto S in the order of a, b, c, d, e, f and every character that is popped from S will be inserted into Q immediately. If the output of Q is b, d, c, f, e, a, the minimum capacity of S must be . (2 points)a. 6b. 5c. 4d. 3(4)Suppose that the size of a hash table is 11, and the hash function isH(key)=key%11. The following 4 elements have been inserted into the table as Addr(14)=3, Addr(38)=5, Addr(61)=6,Addr(86)=9. When open addressing with quadratic probing is used to solve collisions, the address of the element withkey=49 will be . (2 points)a. 4b. 7c. 8d. 10(5)For a binary tree, given the postorder traversal sequence FDEBGCA and theinorder traversal sequence FDBEACG, the corresponding preorder traversal sequence is . (2 points)a. ABDFEGCb. ABDEFCGc. ABDFECGd. ABCDEFG(6)Insert 10, 12, 1, 14, 6, 5, 8, 15, 3, 9, 7, 4, 11, 13, 2 into an initiallyempty binary min heap one at a time, after performing three DeleteMin operations, the last element of the heap is . (2 points)a. 10b. 11c. 8d. 5(7)Let T be a tree created by union-by-size with N nodes, then the height ofT can be . (2 points)a. at most log2(N)+1b. at least log2(N)+1c. as large as Nd. anything that is greater than 1(8)Given a weighted and connected undirected graph G, there is/are minimumspanning tree(s) of G. (2 points)a. only oneb. one or morec. more than oned. zero or more(9)To find the shortest path between a pair of given vertices, methodcan be used. (2 points)a. Kruskalb. Dijkstrac. Hashingd. Critical Path(10)Among the following sorting algorithms, has the average run timeO(NlogN) with O(N) extra spaces. (2 points)a. Quick sortb. Heap sortc. Merge sortd. Insertion sortII. Given the function descriptions of the following three (pseudo-code) programs, please fill in the blank lines. (24 points) (1)The function is to delete the maximum element in a max heap. (12 points) ElementType DeleteMax( PriorityQueue H ) {int i, Child;ElementType MaxElement, LastElement;MaxElement = ① ;LastElement = H->Elements[ H->Size-- ];for( i = 1; i * 2 <= H->Size; i = Child ){ Child = i * 2;if( ② )Child++;if( LastElement < H->Elements[ Child ] )③ ;else break;}H->Elements[ i ] = LastElement;return MaxElement;}(2)The function is to sort a list of N elements A[] in non-decreasing orderby Shellsort with Shell’s increments. (6 points)void Shellsort( ElementType A[ ], int N ){int i, j, Increment;ElementType Tmp;for ( Increment = N / 2; Increment > 0; Increment /= 2 )for ( i = Increment; i < N; i++ ) {Tmp = A[ i ];for ( j = i; ① ; j - = Increment )if(② )A[ j ] = A[ j - Increment ];else break;A[ j ] = Tmp;}}(3)The function is to find maximum sum value of the subsequence in A[0], A[1], A[2], … A[N-1]. (6 points)int MaxSubsequenceSum(int A[], int N){int ThisSum, MaxSum, j;ThisSum=MaxSum=0;for(j=0; jThisSum = ① ;if (ThisSum >MaxSum)MaxSum= ThisSum;else if (ThisSum <0)② ;}return MaxSum;}III. Please write or draw your answers for the following problems on the answer sheet.(41 points)(1)Please list:(a)the depth-first search sequence;(b)(c)the minimum spanning tree.Note: All the adjacent vertices are to be visited by alphabetical order.(15 points)(2)Insert the numbers 40, 28, 6, 72, 100, 3, 80, 91, 38 into an initially emptybinary search tree. Please show(a)the resulting binary search tree; (10 points) and(b)the resulting binary search tree after 72 is deleted. (3 points)(3)The array representation of the disjoint sets is given by { 2, –4, 2, 2,-3, 5, 6, 9, -2 }. Please list the resulting array elements after invokingUnion(7, 9) with union-by-size. Keep in mind that the elements are numberedfrom 1 to 9. (5 points)(4)Given a list of N elements and an integer k. Please describe two differentalgorithms for finding the kth largest element and give the time complexities.(8 points)IV. If each vertex in an undirected weighted graph has a number of balloons assigned.Explain how to modify Dijkstra's algorithm so that if there is more than one minimum path from v to w, a path with the maximum number of balloons is chosen.(15 points)Note : T[ V ].balloon contains the number of balloons at vertex V.void Dijkstra( Table T )。

《数据结构》期末考试试卷试题及答案

《数据结构》期末考试试卷试题及答案

《数据结构》期末考试试卷试题及答案第一部分:选择题(每题2分,共20分)1. 下面哪个数据结构是线性结构?A. 树B. 图C. 队列D. 网络流2. 下面哪个数据结构用于实现广度优先搜索算法?A. 栈B. 队列C. 散列表D. 堆3. 下面哪个数据结构用于实现深度优先搜索算法?A. 栈B. 队列C. 散列表D. 堆4. 下面哪个数据结构用于实现快速排序算法?A. 栈B. 队列C. 散列表D. 堆5. 下面哪个数据结构用于实现优先队列?A. 栈B. 队列C. 散列表D. 堆6. 下面哪个数据结构用于实现哈希表?A. 栈B. 队列C. 散列表D. 堆7. 下面哪个数据结构用于实现最小树算法?A. 栈B. 队列C. 散列表D. 堆8. 下面哪个数据结构用于实现拓扑排序算法?A. 栈B. 队列C. 散列表D. 堆9. 下面哪个数据结构用于实现最短路径算法?A. 栈B. 队列C. 散列表D. 堆10. 下面哪个数据结构用于实现并查集算法?A. 栈B. 队列C. 散列表D. 堆第二部分:填空题(每题2分,共20分)1. 链表是一种______数据结构。

2. 二叉树的节点最多有______个子节点。

3. 堆是一种特殊的______。

4. 散列表的查找效率取决于______。

5. 图的遍历算法包括______和______。

6. 快速排序算法的平均时间复杂度为______。

7. 哈希表中的冲突解决方法有______和______。

8. 最小树算法包括______和______。

9. 最短路径算法包括______和______。

10. 并查集算法用于解决______问题。

第三部分:简答题(每题10分,共50分)1. 请简述栈和队列的区别。

2. 请简述二叉搜索树的特点。

3. 请简述哈希表的原理。

4. 请简述图的深度优先搜索算法。

5. 请简述最小树算法的原理。

第四部分:编程题(每题20分,共50分)1. 编写一个函数,实现链表的插入操作。

数据结构07年(下)试卷B

数据结构07年(下)试卷B

__________________学院__________级___________班 姓名_______________ 学号_______________………………………………(密)………………………………(封)………………………………(线)………………………………密 封 线 内 答 题 无 效2007-2008学年度第二学期期末考试数据结构试卷 B 卷答卷说明:1.本试卷共9页,五个大题,满分100分,120分钟完卷。

2.本试卷为闭卷考试,请将所有题目直接做在试卷上。

一、单项选择题(每题21.单循环链表的尾结点的指针域的值为( )。

A) NULL B) 0 C) 首结点地址 D) 尾结点地址2.设有一个足够大的栈,入栈元素的顺序为wxyz,,则栈的可能输出序列是( )。

A )zwyx B )ywxz C )wxyz D )zxyw3.设串s1=’ABCDEFG’,s2=’PQRST’,函数con(x,y)返回x 和y 串的连接串,subs(s, i, j)返回串s 的从序号i 开始的j 个字符组成的子串,len(s)返回串s 的长度,则con(subs(s1, 2, len(s2)), subs(s1, len(s2), 2))的结果串是: A) BCDEF B) BCDEFG C) BCPQRST D) BCDEFEF4.若广义表A=((a,b,c),(d,e,f )),则式子GetHead(GetTail(GetHead(GetTail(A))))的值为()。

A )(a,b,c )B )(d,e)C )eD )f5.下列程序段的时间复杂度是()。

i=1;while (i<=n) i*=2;A)O(1) B)O(㏒2n) C)O(n) D)O(n2)6.已知一算术表达式的中缀形式为A+B*C-D/E,后缀形式为ABC*+DE/-,其前缀形式为()。

A)–A+B*C/DE B)–A+B*CD/EC)–+*ABC/DE D)–+A*BC/DE7.假设有60行70列的二维数组a[1…60, 1…70]以列序为主序顺序存储,其基地址为10000,每个元素占2个存储单元,那么第32行第58列的元素a[32,58]的存储地址为()。

《数据结构》期末考题(doc 8页)

《数据结构》期末考题(doc 8页)

《数据结构》期末考题(doc 8页)西南财经大学2007 - 2008 学年第二学期统计专业本科 2007、2006级(二、三年级上学期)学号评定成绩(分)学生姓名担任教师周启海《数据结构》期末考试题(B卷)(下述一—三题全作计100分,两小时完卷)考试日期:2008. 12 . 24试题全文:遵守考场纪律,防止一念之差贻误终生。

一、判断题(每小题5分,共10分)1. “广义表”,难用顺序存储结构来描述。

答:2. 已知排序所采用的数据结构、算法思想、语言环境等均相同。

如果对同一组待排序数据,则其递增序排序算法与递减排序算法的运行时间通常不同。

答:二、简答题(每小题5分,共60分)1. 有人说:“学习《数据结构》课程的关键,可概括为——什么是‘数据结构’?有哪些‘数据结构’?各种‘数据结构’特点如何?(所论问题)该用何种‘数据结构’?”这种说法错吗?为什么?答:5. “二叉树”的存储结构,虽然既可采用顺序存储结构(例如数组),也可采用非顺序存储(例如链表)。

但为什么说“非完全二叉树,不宜采用顺序存储结构”?答:6. 设计××××航空公司××航班的“飞机乘客票务管理程序”时,最适宜采用的数据结构是什么?为什么?答:7.现有实现同一功能的三个算法A1,A2和A3,且已知其时间复杂度顺次为Tl=O(2n),T2=O(n2),T3=O(n log n)。

请仅就其时间复杂度,给出各算法优化程度递增的顺序,并说明理由。

答:8. 已知有 5 个元素的入栈次序为“A,B,C,D,E”。

现要求第一个出栈元素为C、第二个出栈元素为D,而其余栈元素仍须保留在此栈中。

请说明相关栈及其元素的弹出与压入操作处理过程。

答:9. 已知二叉树含三个结点A、B、C,请给出以B为根结点的二叉树所有形态。

答:10. 设二维数组A[10][8]的每个数组元素占四个存储单位,且第一个元素A[1][1]的存储地址为1000。

浙江大学城市学院2007《计算机网络》答案A

浙江大学城市学院2007《计算机网络》答案A

浙江大学城市学院2007 — 2008 学年第一学期期末考试《计算机网络》A卷参考答案及评分细则一、填空题(每题__1__分,共__10__分)1.(网络)2.(无编号帧)3.(同步)4.( UDP )5.(全双工)6.(MAC/介质访问控制)7.(anonymous)8.()9.(时分)10.(包过滤路由器)二、单项选择题(每题__1__分,共__30__分)1.(C )2.(A )3.(D )4.(C )5.(B )6.(C )7.(A )8.(D )9.(C )10.(D )11.(C )12.(D )13.(D )14.(B )15.(C )16.(D )17.(D )18.(B )19.(C )20.(A )21.(D )22.(A )23.(C )24.(B )25.(B )26.(C )27.(A )28.(B )29.(C )30.(B )三、问答与计算题(本大题共__6__题,共__36__分)1.(6分)计算机网络采用层次结构的模型有什么好处?请画出OSI参考模型和TCP/IP参考模型的层次结构图。

答:计算机网络中采用层次结构,是为了将复杂的网络问题分解成许多较小的、较容易处理的部分来处理,以便于学习、理解和设计计算机网络。

分层的设计有以下好处:①各层之间相互独立,高层并不需要知道低层如何实现;②灵活性好,当任何一层发生变化时,其他层并不受影响;③各层都可以采用最合适的技术来实现;④易于实现和维护;⑤有利于促进标准化。

(2分)OSI参考模型分为七层(2分),TCP/IP参考模型共有四层结构(2分),如图所示:评分标准:OSI参考模型和TCP/IP参考模型层次描述完整正确各得2分,若有部分错,酌情扣1-2分。

2.(6分)在下列空白处填上数字(1至6),表示在源结点的一个用户发送信息到目标结点的一个用户所发生事件的顺序。

____3____ 当信息通过源结点时,每一层都加上控制信息____1____ 在源结点的网络用户产生信息____6____ 在目标结点的网络用户接受信息____5____ 信息向上通过目标结点的各个网络层次,每一层都除去它的控制信息____4____ 信息以电信号的形式通过物理链路发送____2____ 信息传给源结点的最高层(应用层)评分标准:答错一项扣1分。

数据结构20071期末试卷a卷

数据结构20071期末试卷a卷

期末考试试卷(A)卷2007 ——2008 学年第一学期课程名称:数据结构适用年级/专业: 06/计应、计教试卷类别开卷()闭卷(√)学历层次本科考试用时 120分钟《.考生.......................》...注意:答案要全部抄到答题纸上,做在试卷上不给分一、单项选择(每小题2分,共20分)()1.算法的计算量的大小称为计算的()。

A.可读性 B. 复杂性 C. 现实性 D. 难度()2.链接存储的存储结构所占存储空间:A.分两部分,一部分存放结点值,另一部分存放表示结点间关系的指针B.只有一部分,存放结点值C.只有一部分,存储表示结点间关系的指针D.分两部分,一部分存放结点值,另一部分存放结点所占单元数()3.对于顺序存储的线性表,访问结点和删除结点的时间复杂度为()。

A.O(n) O(n) B. O(n) O(1) C. O(1) O(n) D. O(1) O(1) ()4.设有4个数据元素a1、a2、a3和a4,对他们进行队操作,在进队操作时,按a1、a2、a3、a4次序每次进入一个元素。

假设队的初始状态是空,进队两次,出队一次,再进队两次,出队一次;这时,第一次出队得到的元素是()A.a1 B. a2 C. a3 D. a4()5.有一个100*90的稀疏矩阵,非0元素有10个,设每个整型数占2字节,则用三元组表示该矩阵时,所需的字节数是()。

A.10B. 66C. 18000D. 33 ()6.串的长度是指()A.串中所含不同字母的个数 B.串中所含字符的个数C.串中所含不同字符的个数 D.串中所含非空格字符的个数()7.设森林F中有三棵树,第一,第二,第三棵树的结点个数分别为M1,M2和M3。

与森林F对应的二叉树根结点的右子树上的结点个数是()。

A.M1 B.M1+M2 C.M3 D.M2+M3()8.用邻接表表示图进行广度优先遍历时,通常是采用来实现算法的。

A.栈 B. 队列 C. 树 D. 图()9.在表长为n的链表中进行线性查找,它的平均查找长度为A. ASL=n;B. ASL=(n+1)/2;C. ASL=n+1;D. ASL≈log2(n+1)-1()10.下列关键字序列中,()是堆。

浙江师范大学数据结构期末试卷

浙江师范大学数据结构期末试卷

浙江师范大学《数据结构与算法分析》期末试卷(2006-2007学年第一学期)考试类型:闭卷使用学生:数理与信息工程学院学生考试时间:120分钟出卷时间:2007年1月10日班级:__________ 学号:__________ 姓名:____________说明:考生应将全部答案写在答题纸上,否则作无效处理一、单项选择题(每小题2分,共40分)1.数据结构的二元组定义DS={D,S}中,D是数据元素的有限集合,而S是D上_______的有限集合。

A、数据B、数据项C、关系D、操作2.下列有关线性表的叙述中,正确的是________。

A、线性表中的元素之间是线性关系B、线性表中至少有一个元素C、线性表中任何一个元素有且仅有一个直接前驱D、线性表中任何一个元素有且仅有一个直接后继3.栈和队列都是操作受限的线性表,他们各自的特点是。

A、栈:后进先出,队列:先进后出B、栈:先进后出,队列:后进后出C、栈:后进后出,队列:先进先出D、栈:先进先出,队列:后进先出4.下列关于串的叙述中,正确的是。

A、一个串的字符个数即该串的长度B、一个串的长度至少是1C、空串是由一个空格组成的串D、两个串S1和S2若长度相同,则这两个串相等。

5.若一棵二叉树具有10个度为2的结点,则该二叉树的度为0的结点个数是。

A 、9B 、12C 、11D 、不确定6.高度为k的二叉树(仅含根结点的二叉树高度为1)的结点数最多是________多少个。

A、 2K-1-1B、 2K-1C、 2K+1-1D、 2K+17.一棵二叉排序树T,用方法进行遍历,可以得到结点键值的递增序列。

A、先序遍历B、后序遍历C、层序遍历D、中序遍历8.下面选项中符合堆的定义是 _____ 。

A、100 86 48 73 35 39 42 57 66 21B、12 70 33 65 24 56 48 92 86 33C、5 56 23 40 38 29 31 35 76 28 100D、66 92 56 38 66 23 42 12 30 529.设有一个长度为100的已排好序的线性表,用二分查找进行查找,若查找不成功,至少比较次。

浙江大学城市学院07-08操作系统试卷

浙江大学城市学院07-08操作系统试卷

4. 检测死锁的算法是在______。 A、程序中申请资源时使用 C、死锁即将出现时使用
B、死锁出现之后使用 D、定时检查系统状态时使用
5. 指出以下非临界资源______。
A、纯代码
B、变量
C、队列
D、栈
6. 分区式存储器管理方式中,每个程序______ 。
A、一定在分区中连续、部分存放
B、一定在分区中连续、整体存放
进程 到达时间 运行时间 完成时间 周转时间 平均周转时间 7. (6 分) 最短查找时间优先算法(SSTF)
A、有序文件
B、记录式文件
C、顺序文件
D、流式文件
19. 逻辑文件是______的文件组织形式。 A、在外部设备上 B、从用户观点看
C、虚拟存储
D、目录
20. ______的物理结构对文件随机存取时必须按指针进行,效率较低。
A、连续文件
B、链接文件
C、索引文件
D、多级索引文件
二.判断题(本大题共 15 题,每题 1 分,共 15 分。) 1. 进程被阻塞以后,代表进程在阻塞队列的是它的进程控制块。 2. 所谓并行是指两个或两个以上的事件在同一时刻发生。 3. 一个进程从等待态变成就绪态必定会引起进程切换。 4. 对临界资源,应采用互斥访问方式来实现共享。 5. 处于死锁的系统中,没有进程可再运行。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 四.简答题(本大题共6题,共 40 分。) 得分 1. (3 分)请在下表中正确的位置打勾。
时间换取空间的技术 空间换时间的技术 快表 分页存储 交换技术 虚拟存储器 索引顺序文件 层次存储体系 2. (6 分)试简要回答有哪些磁盘性能参数?并请写出磁盘平均访问时间和这些参数的关系。
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

for(j=i; j>0; j/=2)
printf(“%d\n”, j);
a. O(n)
b. O(n*n)
c. O(nlogn)
d. O(n*i)
(2) Suppose that the time complexities of two programs are given by T1(N)=O(f(N))
MaxElement = c
;
LastElement = H->Elements[ H->Size-- ];
for( i = 1; i * 2 <= H->Size; i = Child )
{ Child = i * 2;
if( d
)
Child++;
if( LastElement < H->Elements[ Child ] )
minimum
spanning tree(s) of G. (2 points)
a. only one
b. one or more
c. more than one d. zero or more
(9) To find the shortest path between a pair of given vertices,
void Shellsort( ElementType A[ ], int N ) {
int i, j, Increment; ElementType Tmp;
for ( Increment = N / 2; Increment > 0; Increment /= 2 )
for ( i = Increment; i < N; i++ ) {
d
;
}
return MaxSum;
}
III. Please write or draw your answers for the following problems on the answer sheet. (41 points)
(1) In the given graph, start from vertex A,
from S will be inserted into Q immediately. If the output of Q is b, d, c,
f, e, a, the minimum capacity of S must be
. (2 points)
a. 6
b. 5
c. 4
d. 3
(4) Suppose that the size of a hash table is 11, and the hash function is
(1) The function is to delete the maximum element in a max heap. (12 points)
ElementType DeleteMax( PriorityQueue H ) {
int i, Child; ElementType MaxElement, LastElement;
(4) Given a list of N elements and an integer k. Please describe two different algorithms for finding the kth largest element and give the time complexities. (8 points)
(3) Given an empty stack S and an empty queue Q. A list of characters are pushed
into S in the order of a, b, c, d, e, f and every character that is popped
int MaxSubsequenceSum(int A[], int N) {
int ThisSum, MaxSum, j; ThisSum=MaxSum=0;
for(j=0; j<N; j++) {
ThisSum = c
;
if (ThisSum >MaxSum)
MaxSum= ThisSum;
else if (ThisSum <0)
浙江大学 2007–2008 学年秋季学期
《数据结构基础》课程期末考试试卷
开课学院: 软件学院、计算机、竺可桢学院 ,考试形式:闭卷,允许带_ 无 入场
考试时间:_2007_年_11_月_17 日, 所需时间: 120 分钟
考生姓名:
___学号:
专业:
____教师:
题序




总分
得分
评卷人
Answer Sheet
operations, the last element of the heap is
. (2 points)
a. 10
b. 11
c. 8
d. 5
(7) Let T be a tree created by union-by-size with N nodes, then the height of
with key=49 will be
. (2 points)
a. 4
b. 7
c. 8
d. 10
(5) For a binary tree, given the postorder traversal sequence FDEBGCA and the
inorder traversal sequence FDBEACG, the corresponding preorder traversal
IV. If each vertex in an undirected weighted graph has a number of balloons assigned. Explain how to modify Dijkstra's algorithm so that if there is more than one minimum path from v to w, a path with the maximum number of balloons is chosen. (15 points) Note : T[ V ].balloon contains the number of balloons at vertex V.
I. Please select the answer for the following problems. (20 points)
(1) The time complexity of the following piece of code is
(2 points)
for(i=0; i<n; i++)
Tmp = A[ i ]; for ( j = i; c
if(d
; j - = Increment ) )
A[ j ] = A[ j - Increment ];
else break;
A[ j ] = Tmp;
}
}
(3) The function is to find maximum sum value of the subsequence in A[0], A[1], A[2], … A[N-1]. (6 points)
(a)the resulting binary search tree; (10 points) and (b)the resulting binary search tree after 72 is deleted. (3 points)
(3) The array representation of the disjoint sets is given by { 2, –4, 2, 2, -3, 5, 6, 9, -2 }. Please list the resulting array elements after invoking Union(7, 9) with union-by-size. Keep in mind that the elements are numbered from 1 to 9. (5 points)
method
can be used. (2 points)
a. Kruskal
b. Dijkstra
c. Hashing
d. Critical Path
(10) Among the following sorting algorithms,
has the average run time
O(NlogN) with O(N) extra spaces. (2 points)
4
Please list:
D
(a) the depth-first search sequence;
2
(b) the breath-first search sequence; and
(c) the minimum spanning tree.
A 5
7
B
C
64
11 5
7
E4
F
31
6
6 5
H
4
I
J
4 8G
H(key)=key%11. The following 4 elements have been inserted into the table
as Addr(14)=3, Addr(38)=5, Addr(61)=6, Addr(86)=9. When open addressing
with quadratic probing is used to solve collisions, the address of the element
相关文档
最新文档