Ich habe einen Benchmark durchgeführt und sorted(lst, reverse=True) == lst
war der schnellste für lange Listen und all(l[i] >= l[i+1] for i in xrange(len(l)-1))
der schnellste für kurze Listen . Diese Benchmarks wurden auf einem MacBook Pro 2010 13 "(Core2 Duo 2,66 GHz, 4 GB 1067 MHz DDR3-RAM, Mac OS X 10.6.5) ausgeführt.
UPDATE: Ich habe das Skript überarbeitet, damit Sie es direkt auf Ihrem eigenen System ausführen können. Die vorherige Version hatte Fehler. Außerdem habe ich sowohl sortierte als auch unsortierte Eingaben hinzugefügt.
- Am besten für kurze sortierte Listen:
all(l[i] >= l[i+1] for i in xrange(len(l)-1))
- Am besten für lange sortierte Listen:
sorted(l, reverse=True) == l
- Am besten für kurze unsortierte Listen:
all(l[i] >= l[i+1] for i in xrange(len(l)-1))
- Am besten für lange unsortierte Listen:
all(l[i] >= l[i+1] for i in xrange(len(l)-1))
In den meisten Fällen gibt es also einen klaren Gewinner.
UPDATE: Die Antworten von aaronsterling (Nr. 6 und Nr. 7) sind in allen Fällen die schnellsten. # 7 ist am schnellsten, da es keine Indirektionsebene zum Nachschlagen des Schlüssels gibt.
#!/usr/bin/env python
import itertools
import time
def benchmark(f, *args):
t1 = time.time()
for i in xrange(1000000):
f(*args)
t2 = time.time()
return t2-t1
L1 = range(4, 0, -1)
L2 = range(100, 0, -1)
L3 = range(0, 4)
L4 = range(0, 100)
# 1.
def isNonIncreasing(l, key=lambda x,y: x >= y):
return all(key(l[i],l[i+1]) for i in xrange(len(l)-1))
print benchmark(isNonIncreasing, L1) # 2.47253704071
print benchmark(isNonIncreasing, L2) # 34.5398209095
print benchmark(isNonIncreasing, L3) # 2.1916718483
print benchmark(isNonIncreasing, L4) # 2.19576501846
# 2.
def isNonIncreasing(l):
return all(l[i] >= l[i+1] for i in xrange(len(l)-1))
print benchmark(isNonIncreasing, L1) # 1.86919999123
print benchmark(isNonIncreasing, L2) # 21.8603689671
print benchmark(isNonIncreasing, L3) # 1.95684289932
print benchmark(isNonIncreasing, L4) # 1.95272517204
# 3.
def isNonIncreasing(l, key=lambda x,y: x >= y):
return all(key(a,b) for (a,b) in itertools.izip(l[:-1],l[1:]))
print benchmark(isNonIncreasing, L1) # 2.65468883514
print benchmark(isNonIncreasing, L2) # 29.7504849434
print benchmark(isNonIncreasing, L3) # 2.78062295914
print benchmark(isNonIncreasing, L4) # 3.73436689377
# 4.
def isNonIncreasing(l):
return all(a >= b for (a,b) in itertools.izip(l[:-1],l[1:]))
print benchmark(isNonIncreasing, L1) # 2.06947803497
print benchmark(isNonIncreasing, L2) # 15.6351969242
print benchmark(isNonIncreasing, L3) # 2.45671010017
print benchmark(isNonIncreasing, L4) # 3.48461818695
# 5.
def isNonIncreasing(l):
return sorted(l, reverse=True) == l
print benchmark(isNonIncreasing, L1) # 2.01579380035
print benchmark(isNonIncreasing, L2) # 5.44593787193
print benchmark(isNonIncreasing, L3) # 2.01813793182
print benchmark(isNonIncreasing, L4) # 4.97615599632
# 6.
def isNonIncreasing(l, key=lambda x, y: x >= y):
for i, el in enumerate(l[1:]):
if key(el, l[i-1]):
return False
return True
print benchmark(isNonIncreasing, L1) # 1.06842684746
print benchmark(isNonIncreasing, L2) # 1.67291283607
print benchmark(isNonIncreasing, L3) # 1.39491200447
print benchmark(isNonIncreasing, L4) # 1.80557894707
# 7.
def isNonIncreasing(l):
for i, el in enumerate(l[1:]):
if el >= l[i-1]:
return False
return True
print benchmark(isNonIncreasing, L1) # 0.883186101913
print benchmark(isNonIncreasing, L2) # 1.42852401733
print benchmark(isNonIncreasing, L3) # 1.09229516983
print benchmark(isNonIncreasing, L4) # 1.59502696991
key
.key=lambda x, y: x < y
macht einen guten Standard.