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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:To find the minimum spanning tree with Kruskal's algorithm for t

Luz5年前 (2021-05-10)1379
To find the minimum spanning tree with Kruskal's algorithm for the following graph. Which edge will be added in the fina…

单选题:Graph G is an undirected completed graph of 20 nodes. Is there a

Luz5年前 (2021-05-10)1316
Graph G is an undirected completed graph of 20 nodes. Is there an Euler circuit in G? If not, in order to have an Euler…

单选题:For a complete binary tree with odd number of nodes, among the f

Luz5年前 (2021-05-10)977
For a complete binary tree with odd number of nodes, among the following statements, how many statement(s) is/are true?…

单选题:When solving the maximum flow problem for graph $$G$$, if partia

Luz5年前 (2021-05-10)2073
When solving the maximum flow problem for graph $$G$$, if partial states of the $$G_f$$ ( will be the maximum flow when…

单选题:To find the minimum spanning tree with Prim's algorithm from v1

Luz5年前 (2021-05-10)1173
To find the minimum spanning tree with Prim's algorithm from v1 for the following graph. Which edge will be added in the…

单选题:以下是一个C语言程序的除标准库之外的全部源代码,则说法正确的是

Luz5年前 (2021-05-10)2110
以下是一个C语言程序的除标准库之外的全部源代码,则说法正确的是 @[B](2)A. 这段程序编译错误B. 这段程序编译正确,但是链接(link)错误C. 这段程序编译、链接(link)正确,但是运行时错误D. 程序无错,可正常运行``…

单选题:对于定义 `char str[] = "abc\008def\n"`(注:其中`0`为数字零),求字符串str的长度len和数组

Luz5年前 (2021-05-10)2504
对于定义 `char str[] = "abc\008def\n"`(注:其中`0`为数字零),求字符串str的长度len和数组str的大小size,len和size分别是: @[C](2)A. 12, 13B. 3, 11C. 3,…

单选题:下列代码的时间复杂度是:

Luz5年前 (2021-05-10)929
下列代码的时间复杂度是: @[C](2)```for(i=0; i˂N; i++) for(j=0; j˂N; j+=1000) printf("%d,%d\n", i, j);```A. $$O(N \times…

单选题:下列代码的时间复杂度是:

Luz5年前 (2021-05-10)931
下列代码的时间复杂度是: @[C](2)```for(i=0; i˂N; i++) for(j=0; j˂i; j+=2) printf("%d,%d\n", i, j);```A. $$O(N \times i)$…

单选题:下列代码的时间复杂度是:

Luz5年前 (2021-05-10)891
下列代码的时间复杂度是: @[D](2)```for(i=0; i˂N; i++) for(j=i; j˂N; j+=j) printf("%d,%d\n", i, j);```A. $$O(N \times j)$…