下面的列表操作中哪些是O(1)的?(假设列表alist足够长,不导致任何报错)
A、alist.pop(0)
B、alist.pop()
C、alist.append(10)
D、alist[10:16]
E、alist.sort()