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
5f516edd
Kaydet (Commit)
5f516edd
authored
Nis 03, 2010
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add count() method to collections.deque().
üst
30583e3f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
1 deletion
+56
-1
collections.rst
Doc/library/collections.rst
+6
-0
test_deque.py
Lib/test/test_deque.py
+7
-0
NEWS
Misc/NEWS
+1
-1
_collectionsmodule.c
Modules/_collectionsmodule.c
+42
-0
No files found.
Doc/library/collections.rst
Dosyayı görüntüle @
5f516edd
...
...
@@ -358,6 +358,12 @@ counts, but the output will exclude results with counts of zero or less.
Remove all elements from the deque leaving it with length 0.
.. method:: count(x)
Count the number of deque elements equal to *x*.
.. versionadded:: 2.7
.. method:: extend(iterable)
Extend the right side of the deque by appending elements from the iterable
...
...
Lib/test/test_deque.py
Dosyayı görüntüle @
5f516edd
...
...
@@ -113,6 +113,13 @@ class TestBasic(unittest.TestCase):
d
=
deque
(
'abc'
)
d
.
maxlen
=
10
def
test_count
(
self
):
for
s
in
(
''
,
'abracadabra'
,
'simsalabim'
*
500
+
'abc'
):
s
=
list
(
s
)
d
=
deque
(
s
)
for
letter
in
'abcdefghijklmnopqrstuvwxyz'
:
self
.
assertEqual
(
s
.
count
(
letter
),
d
.
count
(
letter
),
(
s
,
d
,
letter
))
def
test_comparisons
(
self
):
d
=
deque
(
'xabc'
);
d
.
popleft
()
for
e
in
[
d
,
deque
(
'abc'
),
deque
(
'ab'
),
deque
(),
list
(
d
)]:
...
...
Misc/NEWS
Dosyayı görüntüle @
5f516edd
...
...
@@ -1223,7 +1223,7 @@ Core and Builtins
Library
-------
- Add
a reverse() method
to collections.deque().
- Add
count() and reverse() methods
to collections.deque().
- Fix variations of extending deques: d.extend(d) d.extendleft(d) d+=d
...
...
Modules/_collectionsmodule.c
Dosyayı görüntüle @
5f516edd
...
...
@@ -504,6 +504,46 @@ deque_reverse(dequeobject *deque, PyObject *unused)
PyDoc_STRVAR
(
reverse_doc
,
"D.reverse() -- reverse *IN PLACE*"
);
static
PyObject
*
deque_count
(
dequeobject
*
deque
,
PyObject
*
v
)
{
block
*
leftblock
=
deque
->
leftblock
;
Py_ssize_t
leftindex
=
deque
->
leftindex
;
Py_ssize_t
n
=
(
deque
->
len
);
Py_ssize_t
i
;
Py_ssize_t
count
=
0
;
PyObject
*
item
;
long
start_state
=
deque
->
state
;
int
cmp
;
for
(
i
=
0
;
i
<
n
;
i
++
)
{
item
=
leftblock
->
data
[
leftindex
];
cmp
=
PyObject_RichCompareBool
(
item
,
v
,
Py_EQ
);
if
(
cmp
>
0
)
count
++
;
else
if
(
cmp
<
0
)
return
NULL
;
if
(
start_state
!=
deque
->
state
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"deque mutated during iteration"
);
return
NULL
;
}
/* Advance left block/index pair */
leftindex
++
;
if
(
leftindex
==
BLOCKLEN
)
{
assert
(
leftblock
->
rightlink
!=
NULL
);
leftblock
=
leftblock
->
rightlink
;
leftindex
=
0
;
}
}
return
PyInt_FromSsize_t
(
count
);
}
PyDoc_STRVAR
(
count_doc
,
"D.count(value) -> integer -- return number of occurrences of value"
);
static
Py_ssize_t
deque_len
(
dequeobject
*
deque
)
{
...
...
@@ -991,6 +1031,8 @@ static PyMethodDef deque_methods[] = {
METH_NOARGS
,
clear_doc
},
{
"__copy__"
,
(
PyCFunction
)
deque_copy
,
METH_NOARGS
,
copy_doc
},
{
"count"
,
(
PyCFunction
)
deque_count
,
METH_O
,
count_doc
},
{
"extend"
,
(
PyCFunction
)
deque_extend
,
METH_O
,
extend_doc
},
{
"extendleft"
,
(
PyCFunction
)
deque_extendleft
,
...
...
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