-->
当前位置:首页 > Luz 第6157页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:A graph with 50 vertices and 17 edges must have at most ____ con

Luz5年前 (2021-05-10)596
A graph with 50 vertices and 17 edges must have at most ____ connected component(s). @[C](2)A. 32B. 33C. 44D. 45A.32B.33…

单选题:A graph with 100 vertices and 12 edges must have at most ____ co

Luz5年前 (2021-05-10)1154
A graph with 100 vertices and 12 edges must have at most ____ connected component(s). @[D](2)A. 87B. 88C. 94D. 95A.87B.8…

单选题:具有 50 个顶点和 17 条边的无向图至多有多少个连通分量?

Luz5年前 (2021-05-10)4370
具有 50 个顶点和 17 条边的无向图至多有多少个连通分量? @[C](2)A. 32B. 33C. 44D. 45A.32B.33C.44D.45答案:C…

单选题:Use Dijkstra algorithm to find the shortest paths from 1 to ever

Luz5年前 (2021-05-10)1546
Use Dijkstra algorithm to find the shortest paths from 1 to every other vertices. In which order that the destinations…

单选题:使用迪杰斯特拉(Dijkstra)算法求下图中从顶点1到其他各顶点的最短路径,依次得到的各最短路径的目标顶点是:

Luz5年前 (2021-05-10)3049
使用迪杰斯特拉(Dijkstra)算法求下图中从顶点1到其他各顶点的最短路径,依次得到的各最短路径的目标顶点是:@[B](2)![Dij1.JPG](~/1f6fb93a-a4ee-4e48-bc0f-b169fe89f890.JPG)A.…

单选题:使用迪杰斯特拉(Dijkstra)算法求下图中从顶点1到其他各顶点的最短路径,依次得到的各最短路径的目标顶点是:

Luz5年前 (2021-05-10)2607
使用迪杰斯特拉(Dijkstra)算法求下图中从顶点1到其他各顶点的最短路径,依次得到的各最短路径的目标顶点是:@[A](2)![Dij2.JPG](~/ad667c00-6889-433b-bdf2-b1d9a96bec1e.JPG)A.…

单选题:设 $$n$$ 是描述问题规模的非负整数,下列程序段的时间复杂度是:

Luz5年前 (2021-05-10)1644
设 $$n$$ 是描述问题规模的非负整数,下列程序段的时间复杂度是:@[B](2)```x = 0;while ( n ˃= (x+1)*(x+1) ) x = x+1;```A. $$O(log n)$$B. $$O(n^{1/2}…

单选题:If a general tree $$T$$ is converted into a binary tree $$BT$$,

Luz5年前 (2021-05-10)1060
If a general tree $$T$$ is converted into a binary tree $$BT$$, then which of the following $$BT$$ traversals gives the…

单选题:Let $$n$$ be a non-negative integer representing the size of inp

Luz5年前 (2021-05-10)1270
Let $$n$$ be a non-negative integer representing the size of input. The time complexity of the following piece of code…

单选题:若将一棵树 $$T$$ 转化为对应的二叉树 $$BT$$,则下列对 $$BT$$ 的遍历中,其遍历序列与 $$T$$ 的后根遍历

Luz5年前 (2021-05-10)2181
若将一棵树 $$T$$ 转化为对应的二叉树 $$BT$$,则下列对 $$BT$$ 的遍历中,其遍历序列与 $$T$$ 的后根遍历序列相同的是:@[B](2)A. 先序遍历B. 中序遍历C. 后序遍历D. 按层遍历A.先序遍历B.中序遍历C.…