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
c9297663
Kaydet (Commit)
c9297663
authored
Haz 12, 2004
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Install C version of heapq.nlargest().
Maxheap version of heapq.smallest() is forthcoming.
üst
84a7f007
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
76 additions
and
0 deletions
+76
-0
_heapqmodule.c
Modules/_heapqmodule.c
+76
-0
No files found.
Modules/_heapqmodule.c
Dosyayı görüntüle @
c9297663
...
...
@@ -216,6 +216,80 @@ heapify(PyObject *self, PyObject *heap)
PyDoc_STRVAR
(
heapify_doc
,
"Transform list into a heap, in-place, in O(len(heap)) time."
);
static
PyObject
*
nlargest
(
PyObject
*
self
,
PyObject
*
args
)
{
PyObject
*
heap
=
NULL
,
*
elem
,
*
rv
,
*
iterable
,
*
sol
,
*
it
,
*
oldelem
;
int
i
,
n
;
if
(
!
PyArg_ParseTuple
(
args
,
"Oi:nlargest"
,
&
iterable
,
&
n
))
return
NULL
;
it
=
PyObject_GetIter
(
iterable
);
if
(
it
==
NULL
)
return
NULL
;
heap
=
PyList_New
(
0
);
if
(
it
==
NULL
)
goto
fail
;
for
(
i
=
0
;
i
<
n
;
i
++
){
elem
=
PyIter_Next
(
it
);
if
(
elem
==
NULL
)
goto
sortit
;
if
(
PyList_Append
(
heap
,
elem
)
==
-
1
)
{
Py_DECREF
(
elem
);
goto
fail
;
}
Py_DECREF
(
elem
);
}
if
(
PyList_GET_SIZE
(
heap
)
==
0
)
goto
sortit
;
rv
=
heapify
(
self
,
heap
);
if
(
rv
==
NULL
)
goto
fail
;
Py_DECREF
(
rv
);
sol
=
PyList_GET_ITEM
(
heap
,
0
);
while
(
1
)
{
elem
=
PyIter_Next
(
it
);
if
(
elem
==
NULL
)
{
if
(
PyErr_Occurred
())
goto
fail
;
else
goto
sortit
;
}
if
(
PyObject_RichCompareBool
(
elem
,
sol
,
Py_LE
))
{
Py_DECREF
(
elem
);
continue
;
}
oldelem
=
PyList_GET_ITEM
(
heap
,
0
);
PyList_SET_ITEM
(
heap
,
0
,
elem
);
Py_DECREF
(
oldelem
);
if
(
_siftup
((
PyListObject
*
)
heap
,
0
)
==
-
1
)
goto
fail
;
sol
=
PyList_GET_ITEM
(
heap
,
0
);
}
sortit:
Py_DECREF
(
it
);
if
(
PyList_Sort
(
heap
)
==
-
1
)
goto
fail
;
if
(
PyList_Reverse
(
heap
)
==
-
1
)
goto
fail
;
return
heap
;
fail:
Py_DECREF
(
it
);
Py_XDECREF
(
heap
);
return
NULL
;
}
PyDoc_STRVAR
(
nlargest_doc
,
"Find the n largest elements in a dataset.
\n
\
\n
\
Equivalent to: sorted(iterable, reverse=True)[:n]
\n
"
);
static
PyMethodDef
heapq_methods
[]
=
{
{
"heappush"
,
(
PyCFunction
)
heappush
,
METH_VARARGS
,
heappush_doc
},
...
...
@@ -225,6 +299,8 @@ static PyMethodDef heapq_methods[] = {
METH_VARARGS
,
heapreplace_doc
},
{
"heapify"
,
(
PyCFunction
)
heapify
,
METH_O
,
heapify_doc
},
{
"nlargest"
,
(
PyCFunction
)
nlargest
,
METH_VARARGS
,
nlargest_doc
},
{
NULL
,
NULL
}
/* sentinel */
};
...
...
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