标签: data-structures
答案 0 :(得分:2)
假设存在这样的数据结构。
然后这是一个基于O(n)比较的排序算法:
不存在基于O(n)比较的排序算法,因此不存在这样的数据结构。
答案 1 :(得分:0)
Stack中可以使用常量时间push(),pop()和remove。以下帖子证明了这一点:
design a stack such that getMinimum( ) should be O(1)