1.普通的猴子排序(bogo sort) 猴子排序百科 en.wikipedia.org/wiki/Bogosort 不停的随机打乱序列,然后检查,直到排好序 复杂度O(n*n!) while not isInOrder(deck): shuffle(deck) 2.量子猴排(Quantum Bogo sort) 使用量子计算机 http://baike.baidu.com/view/18645.htm 关于薛定谔的猫 https://en.wikipedia.org/wiki/Schrödin…