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
90e93383
Kaydet (Commit)
90e93383
authored
May 04, 2014
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Neaten-up a bit add add missing size change check.
üst
871620d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
_heapqmodule.c
Modules/_heapqmodule.c
+11
-6
No files found.
Modules/_heapqmodule.c
Dosyayı görüntüle @
90e93383
...
...
@@ -12,9 +12,8 @@ static int
_siftdown
(
PyListObject
*
heap
,
Py_ssize_t
startpos
,
Py_ssize_t
pos
)
{
PyObject
*
newitem
,
*
parent
;
Py_ssize_t
parentpos
,
size
;
int
cmp
;
Py_ssize_t
parentpos
;
Py_ssize_t
size
;
assert
(
PyList_Check
(
heap
));
size
=
PyList_GET_SIZE
(
heap
);
...
...
@@ -26,7 +25,7 @@ _siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
/* Follow the path to the root, moving parents down until finding
a place newitem fits. */
newitem
=
PyList_GET_ITEM
(
heap
,
pos
);
while
(
pos
>
startpos
){
while
(
pos
>
startpos
)
{
parentpos
=
(
pos
-
1
)
>>
1
;
parent
=
PyList_GET_ITEM
(
heap
,
parentpos
);
cmp
=
PyObject_RichCompareBool
(
newitem
,
parent
,
Py_LT
);
...
...
@@ -355,11 +354,12 @@ static int
_siftdownmax
(
PyListObject
*
heap
,
Py_ssize_t
startpos
,
Py_ssize_t
pos
)
{
PyObject
*
newitem
,
*
parent
;
Py_ssize_t
parentpos
,
size
;
int
cmp
;
Py_ssize_t
parentpos
;
assert
(
PyList_Check
(
heap
));
if
(
pos
>=
PyList_GET_SIZE
(
heap
))
{
size
=
PyList_GET_SIZE
(
heap
);
if
(
pos
>=
size
)
{
PyErr_SetString
(
PyExc_IndexError
,
"index out of range"
);
return
-
1
;
}
...
...
@@ -367,12 +367,17 @@ _siftdownmax(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
/* Follow the path to the root, moving parents down until finding
a place newitem fits. */
newitem
=
PyList_GET_ITEM
(
heap
,
pos
);
while
(
pos
>
startpos
){
while
(
pos
>
startpos
)
{
parentpos
=
(
pos
-
1
)
>>
1
;
parent
=
PyList_GET_ITEM
(
heap
,
parentpos
);
cmp
=
PyObject_RichCompareBool
(
parent
,
newitem
,
Py_LT
);
if
(
cmp
==
-
1
)
return
-
1
;
if
(
size
!=
PyList_GET_SIZE
(
heap
))
{
PyErr_SetString
(
PyExc_RuntimeError
,
"list changed size during iteration"
);
return
-
1
;
}
if
(
cmp
==
0
)
break
;
parent
=
PyList_GET_ITEM
(
heap
,
parentpos
);
...
...
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