試卷名稱:110年 - 110 國立臺灣大學_碩士班招生考試_部分系所:資料結構與演算法(A)#105777
年份:110年
科目:台大◆資工◆資料結構與演算法(A)
VII There is a linked-list with n elements, which arex1,x2,...,xn. Let f(n) be the time complexity of
inserting a new element Int: to the tail of the list, and g(n) be that of deleting the last element an. If
there is only one pointer pointed to the head of the list, we kuow to access the list is time-consuming,
and functions f(n) and g(n) are denoted as f1(n) and g1(n) in this case. 'To improve it, we may
also add another pointer pointed to the tail of it, so the functions f(n) and g(n) become f2(n) and g2(n). Which of the following option is false if n becomes large.__ (13)__
(A)
(B) 
(C)
(D)