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
c784c6db
Kaydet (Commit)
c784c6db
authored
May 16, 2015
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Tighten-up code by eliminating an unnecessary variable.
üst
183a941b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
_heapqmodule.c
Modules/_heapqmodule.c
+8
-10
No files found.
Modules/_heapqmodule.c
Dosyayı görüntüle @
c784c6db
...
...
@@ -50,7 +50,7 @@ siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
static
int
siftup
(
PyListObject
*
heap
,
Py_ssize_t
pos
)
{
Py_ssize_t
startpos
,
endpos
,
childpos
,
rightpos
,
limit
;
Py_ssize_t
startpos
,
endpos
,
childpos
,
limit
;
PyObject
*
tmp1
,
*
tmp2
;
int
cmp
;
...
...
@@ -67,16 +67,15 @@ siftup(PyListObject *heap, Py_ssize_t pos)
while
(
pos
<
limit
)
{
/* Set childpos to index of smaller child. */
childpos
=
2
*
pos
+
1
;
/* leftmost child position */
rightpos
=
childpos
+
1
;
if
(
rightpos
<
endpos
)
{
if
(
childpos
+
1
<
endpos
)
{
cmp
=
PyObject_RichCompareBool
(
PyList_GET_ITEM
(
heap
,
childpos
),
PyList_GET_ITEM
(
heap
,
rightpos
),
PyList_GET_ITEM
(
heap
,
childpos
+
1
),
Py_LT
);
if
(
cmp
==
-
1
)
return
-
1
;
if
(
cmp
==
0
)
childpos
=
rightpos
;
childpos
++
;
/* rightmost child is smallest */
if
(
endpos
!=
PyList_GET_SIZE
(
heap
))
{
PyErr_SetString
(
PyExc_RuntimeError
,
"list changed size during iteration"
);
...
...
@@ -402,7 +401,7 @@ siftdown_max(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
static
int
siftup_max
(
PyListObject
*
heap
,
Py_ssize_t
pos
)
{
Py_ssize_t
startpos
,
endpos
,
childpos
,
rightpos
,
limit
;
Py_ssize_t
startpos
,
endpos
,
childpos
,
limit
;
PyObject
*
tmp1
,
*
tmp2
;
int
cmp
;
...
...
@@ -419,16 +418,15 @@ siftup_max(PyListObject *heap, Py_ssize_t pos)
while
(
pos
<
limit
)
{
/* Set childpos to index of smaller child. */
childpos
=
2
*
pos
+
1
;
/* leftmost child position */
rightpos
=
childpos
+
1
;
if
(
rightpos
<
endpos
)
{
if
(
childpos
+
1
<
endpos
)
{
cmp
=
PyObject_RichCompareBool
(
PyList_GET_ITEM
(
heap
,
rightpos
),
PyList_GET_ITEM
(
heap
,
childpos
+
1
),
PyList_GET_ITEM
(
heap
,
childpos
),
Py_LT
);
if
(
cmp
==
-
1
)
return
-
1
;
if
(
cmp
==
0
)
childpos
=
rightpos
;
childpos
++
;
/* rightmost child is smallest */
if
(
endpos
!=
PyList_GET_SIZE
(
heap
))
{
PyErr_SetString
(
PyExc_RuntimeError
,
"list changed size during iteration"
);
...
...
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