[ 问答题 ] 简答

使用大O标记法写出下列算法的时间复杂度。(6分)
(1)冒泡排序;O(n2)
(2)选择排序;O(n2)
(3)插入排序;O(n2)
(4)快速排序;O(nlogn)
(5)堆排序;O(nlogn)
(6)归并排序:O(nlogn)