-->
当前位置:首页 > 题库

题库 第598页

  • 最新
  • 浏览
  • 评论

判断题:An algorithm must terminate after finite number of steps.

Luz4年前 (2022-11-16)562
An algorithm must terminate after finite number of steps.答案:TRUE…

判断题:Recursive programs are in general simple and easy to understand

Luz4年前 (2022-11-16)465
Recursive programs are in general simple and easy to understand. On the other hand, recursions usually require more spa…

判断题:Time complexity is machine or compiler-dependent.

Luz4年前 (2022-11-16)525
Time complexity is machine or compiler-dependent.答案:FALSE…

判断题:Linear list is a data structure that represents 1-to-1 relations

Luz4年前 (2022-11-16)475
Linear list is a data structure that represents 1-to-1 relations.答案:TRUE…

判断题:Linear list is a data structure that represents 1-to-many relati

Luz4年前 (2022-11-16)430
Linear list is a data structure that represents 1-to-many relations.答案:FALSE…

判断题:Linear list is a data structure that represents many-to-1 relati

Luz4年前 (2022-11-16)461
Linear list is a data structure that represents many-to-1 relations.答案:FALSE…

判断题:The worst cast time complexity of Binary Search is always ...

Luz4年前 (2022-11-16)530
The worst cast time complexity of Binary Search is always $$O(\log n)$$ where $$n$$ is the number of sorted integers.答案:…

判断题:Given two algorithms A1 and A2, with time complexities being

Luz4年前 (2022-11-16)666
Given two algorithms $$A_1$$ and $$A_2$$, with time complexities being $$T_1 = O(n^2)$$ and $$T_2 = O(n\log n)$$, respec…

判断题:In a tree of degree d>2, if n1 = 1, then ...

Luz4年前 (2022-11-16)513
In a tree of degree $$d>2$$, if $$n_1 = 1$$, then we must have $$\sum_{i=1}^{d}n_i > n_0$$, where $$n_i$$ is the…

判断题:For a binary search tree, if its pre-order travel sequence is {

Luz4年前 (2022-11-16)707
For a binary search tree, if its pre-order travel sequence is { 56, 28, 12, 35, 77, 64, 68, 72 }, then 68 is the parent…