当前位置:首页
> Luz 第6157页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题:A graph with 50 vertices and 17 edges must have at most ____ con
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
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 条边的无向图至多有多少个连通分量?
具有 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
Use Dijkstra algorithm to find the shortest paths from 1 to every other vertices. In which order that the destinations…
单选题:使用迪杰斯特拉(Dijkstra)算法求下图中从顶点1到其他各顶点的最短路径,依次得到的各最短路径的目标顶点是:
使用迪杰斯特拉(Dijkstra)算法求下图中从顶点1到其他各顶点的最短路径,依次得到的各最短路径的目标顶点是:@[B](2)A.…
单选题:使用迪杰斯特拉(Dijkstra)算法求下图中从顶点1到其他各顶点的最短路径,依次得到的各最短路径的目标顶点是:
使用迪杰斯特拉(Dijkstra)算法求下图中从顶点1到其他各顶点的最短路径,依次得到的各最短路径的目标顶点是:@[A](2)A.…
单选题:设 $$n$$ 是描述问题规模的非负整数,下列程序段的时间复杂度是:
设 $$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$$,
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
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$$ 的后根遍历
若将一棵树 $$T$$ 转化为对应的二叉树 $$BT$$,则下列对 $$BT$$ 的遍历中,其遍历序列与 $$T$$ 的后根遍历序列相同的是:@[B](2)A. 先序遍历B. 中序遍历C. 后序遍历D. 按层遍历A.先序遍历B.中序遍历C.…