Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
16653cb2
Kaydet (Commit)
16653cb2
authored
May 26, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add Tim's worst case scenario.
Revert to using whrandom so it will work with older versions of Python.
üst
7462942b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
sortperf.py
Lib/test/sortperf.py
+11
-6
No files found.
Lib/test/sortperf.py
Dosyayı görüntüle @
16653cb2
...
...
@@ -7,7 +7,7 @@ See tabulate() for output format.
import
sys
import
time
import
random
import
wh
random
import
marshal
import
tempfile
import
operator
...
...
@@ -23,7 +23,7 @@ def randrange(n):
except
IOError
:
result
=
[]
for
i
in
range
(
n
):
result
.
append
(
random
.
random
())
result
.
append
(
wh
random
.
random
())
try
:
try
:
fp
=
open
(
fn
,
"wb"
)
...
...
@@ -44,7 +44,7 @@ def randrange(n):
##assert len(result) == n
# Shuffle it a bit...
for
i
in
range
(
10
):
i
=
random
.
randint
(
0
,
n
-
1
)
i
=
wh
random
.
randint
(
0
,
n
-
1
)
temp
=
result
[:
i
]
del
result
[:
i
]
temp
.
reverse
()
...
...
@@ -75,10 +75,12 @@ def tabulate(r):
/sort: ascending data
~sort: many duplicates
-sort: all equal
!sort: worst case scenario
"""
fmt
=
(
"
%2
s
%6
s"
+
"
%6
s"
*
5
)
print
fmt
%
(
"i"
,
"2**i"
,
"*sort"
,
"
\\
sort"
,
"/sort"
,
"~sort"
,
"-sort"
)
cases
=
(
"*sort"
,
"
\\
sort"
,
"/sort"
,
"~sort"
,
"-sort"
,
"!sort"
)
fmt
=
(
"
%2
s
%6
s"
+
"
%6
s"
*
len
(
cases
))
print
fmt
%
((
"i"
,
"2**i"
)
+
cases
)
for
i
in
r
:
n
=
1
<<
i
L
=
randrange
(
n
)
...
...
@@ -97,6 +99,9 @@ def tabulate(r):
del
L
L
=
map
(
abs
,
[
-
0.5
]
*
n
)
doit
(
L
)
# -sort
L
=
range
(
n
/
2
-
1
,
-
1
,
-
1
)
L
[
len
(
L
):]
=
range
(
n
/
2
)
doit
(
L
)
# !sort
print
def
main
():
...
...
@@ -129,7 +134,7 @@ def main():
y
=
(
y
^
h
^
d
)
&
255
h
=
h
>>
8
z
=
(
z
^
h
^
d
)
&
255
random
.
seed
(
x
,
y
,
z
)
wh
random
.
seed
(
x
,
y
,
z
)
r
=
range
(
k1
,
k2
+
1
)
# include the end point
tabulate
(
r
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment