阿摩線上測驗 登入

試題詳解

試卷:101年 - 101 國立交通大學_碩士班考試入學試題_資訊聯招:資料結構與演算法#113301 | 科目:研究所、轉學考(插大)-資料結構

試卷資訊

試卷名稱:101年 - 101 國立交通大學_碩士班考試入學試題_資訊聯招:資料結構與演算法#113301

年份:101年

科目:研究所、轉學考(插大)-資料結構

(35) Consider the following C++ function that uses a divide and conquer approach to calculate the sum of a range of numbers. Which of the following lines of code from the above function divides this problem into sub-problems?
(A) int result = sum(i, mid) + sum(mid+1, j);
(B) int mid = (i+j)/ 2;
(C) if(i==j){
(D) return result;
(E) int sum(int i, int j) {

正確答案:登入後查看

詳解 (共 1 筆)

推薦的詳解#7101506
未解鎖
題目解析 這道題目考察的是「分治法」(...
(共 954 字,隱藏中)
前往觀看
0
0