nguyentruonga nguyentruonga 03-05-2024 Computers and Technology Answered phân tích, đánh giá độ phức tạp thuật toán đoạn chương trình sau: int func(int n, int k) { if(k==0||k==n) return 1; return func (n-1,k-1)+ func (n-1,k); }