2019年上海科技大学考研专业课试题991数据结构与算法.pdf
- 【下载声明】
1. 本站全部试题类文档,若标题没写含答案,则无答案;标题注明含答案的文档,主观题也可能无答案。请谨慎下单,一旦售出,不予退换。
2. 本站全部PPT文档均不含视频和音频,PPT中出现的音频或视频标识(或文字)仅表示流程,实际无音频或视频文件。请谨慎下单,一旦售出,不予退换。
3. 本页资料《2019年上海科技大学考研专业课试题991数据结构与算法.pdf》由用户(雁南飞1234)主动上传,其收益全归该用户。163文库仅提供信息存储空间,仅对该用户上传内容的表现方式做保护处理,对上传内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(点击联系客服),我们立即给予删除!
4. 请根据预览情况,自愿下载本文。本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
5. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007及以上版本和PDF阅读器,压缩文件请下载最新的WinRAR软件解压。
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 大学考研专业课试题
- 资源描述:
-
1、第 1 页 共 12 页 上海上海科技大学科技大学 2012019 9 年年攻读硕士学位研究生攻读硕士学位研究生 招生招生考试试题考试试题 科目代码:科目代码:9 99191 科目科目名称:名称:数据结构与算法数据结构与算法 考生考生须知:须知:1.本试卷满分为 150 分,全部考试时间总计 180 分钟。2.所有答案必须写在答题纸上,写在试题纸上或草稿纸上一律无效。3.每道题的英文部分均已翻译为中文,考生可在中英文中任选一种语言作答。1.True or False(10 problems,2 points each)判断题(判断题(10 题,每题题,每题 2 分)分)Please indic
2、ate in the answer sheet whether each statement is true or false.Write down“T”for being true and“F”for being false.请在答题纸上写明下列每个命题的真假。真则打“”,假则打“”。1.In a circular linked list,some link fields may be null.()在循环链表中,某些链接域可能为空。()2.Given any functions f(n)and g(n),it is possible to have both f(n)=(g(n)and f
3、(n)=o(g(n).()给定任意函数 f(n)和 g(n),f(n)=(g(n)和 f(n)=o(g(n)可能同时成立。()3.A good hash function of a hash table satisfies the assumption of simple uniform hashing.()一个好的哈希函数需满足简单均匀。()4.The following tree is a binary search tree.()下列树是二叉搜索树。()174953科目代码:991 科目名称:数据结构与算法 第 2 页 共 12 页 5.The number of nodes in a
4、tree can be more than twice the number of leaf nodes.()一棵树的节点个数有可能大于叶节点个数的两倍。()6.The space complexity of an adjacency-matrix representation of a graph is independent of the number of edges in the graph.()图的邻接矩阵表示的空间复杂度与图的边数无关。()7.In the breadth-first search procedure of graphs,each vertex must be en
5、queued exactly once.()在图的广度遍历算法中,每个节点恰好仅入队一次。()8.Given a weighted,directed graph with nodes numbered 1,2,n,finding the length of a shortest path from vertex 1 to vertex n or determining that no such path exists can be done in polynomial time.()给定一个带权有向图,图的节点为 1,2,n,要计算节点 1 和 n 之间的最短路径或判断这样的路径不存在,这个问
6、题可以在多项式时间内解决。()9.Given a graph,deciding whether it has a clique of 100 nodes is NP-complete,assuming PNP.()给定一个图,确定图中是否存在一个正好包含 100 个节点的团是一个 NP-complete 的问题,假设 PNP。()10.Given a graph,deciding whether it is possible to remove half the nodes in the graph so that the remaining graph is 3-colorable is s
7、olvable in polynomial time,assuming PNP.()给定一个图,确定是否可以去除图中一半的节点后使得该图可以三染色,这可以在多项式时间内完成,假设 PNP。()2.Multiple Choices Select One(10 problems,2 points each)单选题(单选题(10 题,每题,每题题 2 分)分)Each question has only one correct choice.Please indicate the correct choice in the answer sheet.每题只有一个正确选项。请在答题纸上写下正确选项的序
8、号。1.In what kind of storage structure for strings can one easily insert,delete,concatenate,and 科目代码:991 科目名称:数据结构与算法 第 3 页 共 12 页 rearrange substrings?()A.Fixed length storage structure B.Linked list storage C.Variable length storage with fixed maximum D.Array list storage E.None of the above 哪种字符串的
9、存储结构可以方便地进行插入,删除,并联以及重新安排子字符串?()A.固定长度的存储结构 B.链表存储结构 C.具有固定最大长度的变长存储结构 D.数组存储结构 E.以上都不是 2.In which of the following are the functions listed in order of increasing asymptotic size?()下面哪个选项中的函数是按照渐进大小的增序排列?()A.2n,n+(log n)2,n3,10n2,n log n B.n+(log n)2,n3,10n2,n log n,2n C.n+(log n)2,n log n,10n2,n3,
10、2n D.n+(log n)2,10n2,n log n,n3,2n E.2n,n3,10n2,n log n,n+(log n)2 3.We store 10 elements with keys 5,28,19,15,20,12,33,17,10,18 into a hash table with collisions resolved by chaining(with linked list).The hash table has 9 slots and the hash function is defined as h(k)=k mod 9.What is the maximum le
11、ngth of the linked lists in the hash table?()存储 10 个元素到一个哈希表,这 10 个元素的 key 是5,28,19,15,20,12,33,17,10,18。哈希表总共有 9 个 slots,哈希函数是 h(k)=k mod 9,并用链表解决冲突。哈希表中最长的链表长度是?()A.1 B.2 C.3 D.4 4.A full binary tree is a rooted tree in which every internal node has exactly two children.How 科目代码:991 科目名称:数据结构与算法 第
12、 4 页 共 12 页 many internal nodes are there in a full binary tree with 500 leaves?()满二叉树的所有中间节点都有两个孩子节点。一个有 500 个叶子节点的满二叉树有多少个中间节点?()A.250 B.499 C.500 D.501 E.1,000 5.Which of the following statements about trees is false?()A.An internal node may have no child B.Adding an edge to a tree creates a cycl
13、e C.Not every node has a parent node in a tree D.The height of a tree with one node is 0 以下哪一个关于树的描述是错误的?()A.非叶节点有可能没有孩子 B.在一棵树中加一条边会形成一个环 C.一棵树中并非每个节点都有父亲节点 D.一棵包含一个节点的树高度为 0 6.What is the in-order traversal of the following binary tree?()下面二叉树的中序遍历是什么?()A.DFBEAC B.ABDFEC C.FDEBCA D.FDEBAC A B C D
14、E F 科目代码:991 科目名称:数据结构与算法 第 5 页 共 12 页 7.Prims algorithm is one algorithm for finding a minimum spanning tree in a graph and the Floyd-Warshall algorithm can be used to solve the all-pairs shortest-paths problem on a directed graph.Which of the following must be true?()i.Prims algorithm is a greedy
15、algorithm.ii.Prims algorithm is a dynamic programming algorithm.iii.Floyd-Warshall algorithm is a greedy algorithm.iv.Floyd-Warshall algorithm is a dynamic programming algorithm.Prim 算法是一种计算图的最小生成树算法,Floyd-Warshall 算法可用于计算有向图中所有节点对之间的最短路径。以下哪些表述肯定是正确的?()i.Prim 算法是一种贪心算法。ii.Prim 算法是一种动态规划算法。iii.Floyd
16、-Warshall 算法是一种贪心算法。iv.Floyd-Warshall 算法是一种动态规划算法。A.i 和 iii B.i 和 iv C.ii 和 iii D.ii 和 iv 8.Among the following problems concerning a given graph G,which is currently known to be solvable in linear time?()A.Finding a longest simple cycle in an undirected graph B.Computing the strongly connected comp
17、onents of a directed graph C.Solving the single-source shortest-paths problem of a weighted,directed graph G D.Finding a largest clique in an undirected graph G 以下哪一个图的问题可以在线性时间内解决?()A.找到一个无向图中的最长简单环 B.计算有向图的强连通分量 C.解决带权有向图的单源最短路径问题 D.找到一个无向图的最大团 9.Which of the following is true of merge sort and qu
展开阅读全文