-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathbisect.po
More file actions
490 lines (449 loc) · 19 KB
/
bisect.po
File metadata and controls
490 lines (449 loc) · 19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2017, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-10-11 20:40+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dong-gweon Oh <flowdas@gmail.com>\n"
"Language-Team: Korean (https://python.flowdas.com)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.17.0\n"
#: ../../library/bisect.rst:2
msgid ":mod:`!bisect` --- Array bisection algorithm"
msgstr ":mod:`!bisect` --- 배열 이진 분할 알고리즘"
#: ../../library/bisect.rst:10
msgid "**Source code:** :source:`Lib/bisect.py`"
msgstr "**소스 코드:** :source:`Lib/bisect.py`"
#: ../../library/bisect.rst:14
msgid ""
"This module provides support for maintaining a list in sorted order "
"without having to sort the list after each insertion. For long lists of "
"items with expensive comparison operations, this can be an improvement "
"over linear searches or frequent resorting."
msgstr ""
"이 모듈은 정렬된 리스트를 삽입 후에 다시 정렬할 필요 없도록 관리할 수 있도록 지원합니다. 값비싼 비교 연산이 포함된 항목의 긴 "
"리스트의 경우, 이는 선형 검색이나 빈번한 재정렬에 비해 개선된 것입니다."
#: ../../library/bisect.rst:19
msgid ""
"The module is called :mod:`bisect` because it uses a basic bisection "
"algorithm to do its work. Unlike other bisection tools that search for a"
" specific value, the functions in this module are designed to locate an "
"insertion point. Accordingly, the functions never call an "
":meth:`~object.__eq__` method to determine whether a value has been "
"found. Instead, the functions only call the :meth:`~object.__lt__` "
"method and will return an insertion point between values in an array."
msgstr ""
"이 모듈은 기본적인 이진 분할 알고리즘을 사용하기 때문에 :mod:`bisect`\\라고 불립니다. 특정 값을 검색하는 다른 이진 "
"분할 도구와 달리, 이 모듈의 함수는 삽입 지점을 찾도록 설계되었습니다. 따라서, 함수는 값을 찾았는지 판단하기 위해 "
":meth:`~object.__eq__` 메서드를 호출하지 않습니다. 대신, 함수는 :meth:`~object.__lt__` "
"메서드만 호출하고 배열에 있는 값 사이의 삽입 지점을 반환합니다."
#: ../../library/bisect.rst:29
msgid ""
"The functions in this module are not thread-safe. If multiple threads "
"concurrently use :mod:`bisect` functions on the same sequence, this may "
"result in undefined behaviour. Likewise, if the provided sequence is "
"mutated by a different thread while a :mod:`bisect` function is operating"
" on it, the result is undefined. For example, using "
":py:func:`~bisect.insort_left` on the same list from multiple threads may"
" result in the list becoming unsorted."
msgstr ""
#: ../../library/bisect.rst:39
msgid "The following functions are provided:"
msgstr "다음과 같은 함수가 제공됩니다:"
#: ../../library/bisect.rst:44
msgid ""
"Locate the insertion point for *x* in *a* to maintain sorted order. The "
"parameters *lo* and *hi* may be used to specify a subset of the list "
"which should be considered; by default the entire list is used. If *x* "
"is already present in *a*, the insertion point will be before (to the "
"left of) any existing entries. The return value is suitable for use as "
"the first parameter to ``list.insert()`` assuming that *a* is already "
"sorted."
msgstr ""
"정렬된 순서를 유지하도록 *a*\\에 *x*\\를 삽입할 위치를 찾습니다. 매개 변수 *lo* 와 *hi*\\는 고려해야 할 "
"리스트의 부분집합을 지정하는 데 사용될 수 있습니다; 기본적으로 전체 리스트가 사용됩니다. *x*\\가 *a*\\에 이미 있으면, "
"삽입 위치는 기존 항목 앞(왼쪽)이 됩니다. 반환 값은 *a*\\가 이미 정렬되었다고 가정할 때 "
"``list.insert()``\\의 첫 번째 매개 변수로 사용하기에 적합합니다."
#: ../../library/bisect.rst:51
msgid ""
"The returned insertion point *ip* partitions the array *a* into two "
"slices such that ``all(elem < x for elem in a[lo : ip])`` is true for the"
" left slice and ``all(elem >= x for elem in a[ip : hi])`` is true for the"
" right slice."
msgstr ""
"반환된 삽입 위치 *ip*\\는 배열 *a*\\를 두 개의 조각으로 분할하여, 왼쪽에 대해서는 ``all(elem < x for "
"elem in a[lo : ip])``\\이 참이고, 오른쪽에 대해서는 ``all(elem >= x for elem in a[ip "
": hi])``\\이 참이 되도록 만듭니다."
#: ../../library/bisect.rst:56
msgid ""
"*key* specifies a :term:`key function` of one argument that is used to "
"extract a comparison key from each element in the array. To support "
"searching complex records, the key function is not applied to the *x* "
"value."
msgstr ""
#: ../../library/bisect.rst:60
msgid ""
"If *key* is ``None``, the elements are compared directly and no key "
"function is called."
msgstr ""
#: ../../library/bisect.rst:63 ../../library/bisect.rst:77
#: ../../library/bisect.rst:95 ../../library/bisect.rst:115
msgid "Added the *key* parameter."
msgstr "*key* 매개 변수를 추가했습니다."
#: ../../library/bisect.rst:70
msgid ""
"Similar to :py:func:`~bisect.bisect_left`, but returns an insertion point"
" which comes after (to the right of) any existing entries of *x* in *a*."
msgstr ""
":py:func:`~bisect.bisect_left`\\와 비슷하지만, *a*\\에 있는 *x*\\의 기존 항목 뒤(오른쪽)에 "
"오는 삽입 위치를 반환합니다."
#: ../../library/bisect.rst:73
msgid ""
"The returned insertion point *ip* partitions the array *a* into two "
"slices such that ``all(elem <= x for elem in a[lo : ip])`` is true for "
"the left slice and ``all(elem > x for elem in a[ip : hi])`` is true for "
"the right slice."
msgstr ""
"반환된 삽입 위치 *ip*\\는 배열 *a*\\를 두 개의 조각으로 분할하여, 왼쪽에 대해서는 ``all(elem <= x for "
"elem in a[lo : ip])``\\이 참이고, 오른쪽에 대해서는 ``all(elem > x for elem in a[ip :"
" hi])``\\이 참이 되도록 만듭니다."
#: ../../library/bisect.rst:83
msgid "Insert *x* in *a* in sorted order."
msgstr ""
#: ../../library/bisect.rst:85
msgid ""
"This function first runs :py:func:`~bisect.bisect_left` to locate an "
"insertion point. Next, it runs the :meth:`~sequence.insert` method on *a*"
" to insert *x* at the appropriate position to maintain sort order."
msgstr ""
#: ../../library/bisect.rst:89 ../../library/bisect.rst:109
msgid ""
"To support inserting records in a table, the *key* function (if any) is "
"applied to *x* for the search step but not for the insertion step."
msgstr ""
#: ../../library/bisect.rst:92 ../../library/bisect.rst:112
msgid ""
"Keep in mind that the *O*\\ (log *n*) search is dominated by the slow "
"*O*\\ (*n*) insertion step."
msgstr ""
#: ../../library/bisect.rst:102
msgid ""
"Similar to :py:func:`~bisect.insort_left`, but inserting *x* in *a* after"
" any existing entries of *x*."
msgstr ""
":py:func:`~bisect.insort_left`\\와 비슷하지만, *a*\\에 *x*\\를 *x*\\의 기존 항목 다음에 "
"삽입합니다."
#: ../../library/bisect.rst:105
msgid ""
"This function first runs :py:func:`~bisect.bisect_right` to locate an "
"insertion point. Next, it runs the :meth:`~sequence.insert` method on *a*"
" to insert *x* at the appropriate position to maintain sort order."
msgstr ""
#: ../../library/bisect.rst:120
msgid "Performance Notes"
msgstr ""
#: ../../library/bisect.rst:122
msgid ""
"When writing time sensitive code using *bisect()* and *insort()*, keep "
"these thoughts in mind:"
msgstr ""
#: ../../library/bisect.rst:125
msgid ""
"Bisection is effective for searching ranges of values. For locating "
"specific values, dictionaries are more performant."
msgstr ""
#: ../../library/bisect.rst:128
msgid ""
"The *insort()* functions are *O*\\ (*n*) because the logarithmic search "
"step is dominated by the linear time insertion step."
msgstr ""
#: ../../library/bisect.rst:131
msgid ""
"The search functions are stateless and discard key function results after"
" they are used. Consequently, if the search functions are used in a "
"loop, the key function may be called again and again on the same array "
"elements. If the key function isn't fast, consider wrapping it with "
":py:func:`functools.cache` to avoid duplicate computations. "
"Alternatively, consider searching an array of precomputed keys to locate "
"the insertion point (as shown in the examples section below)."
msgstr ""
#: ../../library/bisect.rst:141
msgid ""
"`Sorted Collections <https://grantjenks.com/docs/sortedcollections/>`_ is"
" a high performance module that uses *bisect* to managed sorted "
"collections of data."
msgstr ""
#: ../../library/bisect.rst:145
msgid ""
"The `SortedCollection recipe "
"<https://code.activestate.com/recipes/577197-sortedcollection/>`_ uses "
"bisect to build a full-featured collection class with straight-forward "
"search methods and support for a key-function. The keys are precomputed "
"to save unnecessary calls to the key function during searches."
msgstr ""
"bisect를 사용하여 직접적인 검색 메서드와 키 함수 지원을 포함하는 완전한 기능을 갖춘 컬렉션 클래스를 만드는 "
"`SortedCollection recipe "
"<https://code.activestate.com/recipes/577197-sortedcollection/>`_. 검색 중에 "
"불필요한 키 함수 호출을 피하고자 키는 미리 계산됩니다."
#: ../../library/bisect.rst:153
msgid "Searching Sorted Lists"
msgstr "정렬된 리스트 검색하기"
#: ../../library/bisect.rst:155
msgid ""
"The above `bisect functions`_ are useful for finding insertion points but"
" can be tricky or awkward to use for common searching tasks. The "
"following five functions show how to transform them into the standard "
"lookups for sorted lists::"
msgstr ""
"위의 `bisect functions`_\\는 삽입 위치를 찾는 데 유용하지만, 일반적인 검색 작업에 사용하기가 까다롭거나 어색할 "
"수 있습니다. 다음 다섯 함수는 정렬된 리스트에 대한 표준 조회로 변환하는 방법을 보여줍니다::"
#: ../../library/bisect.rst:160
msgid ""
"def index(a, x):\n"
" 'Locate the leftmost value exactly equal to x'\n"
" i = bisect_left(a, x)\n"
" if i != len(a) and a[i] == x:\n"
" return i\n"
" raise ValueError\n"
"\n"
"def find_lt(a, x):\n"
" 'Find rightmost value less than x'\n"
" i = bisect_left(a, x)\n"
" if i:\n"
" return a[i-1]\n"
" raise ValueError\n"
"\n"
"def find_le(a, x):\n"
" 'Find rightmost value less than or equal to x'\n"
" i = bisect_right(a, x)\n"
" if i:\n"
" return a[i-1]\n"
" raise ValueError\n"
"\n"
"def find_gt(a, x):\n"
" 'Find leftmost value greater than x'\n"
" i = bisect_right(a, x)\n"
" if i != len(a):\n"
" return a[i]\n"
" raise ValueError\n"
"\n"
"def find_ge(a, x):\n"
" 'Find leftmost item greater than or equal to x'\n"
" i = bisect_left(a, x)\n"
" if i != len(a):\n"
" return a[i]\n"
" raise ValueError"
msgstr ""
"def index(a, x):\n"
" 'x 와 정확히 같은 가장 왼쪽의 값을 찾습니다'\n"
" i = bisect_left(a, x)\n"
" if i != len(a) and a[i] == x:\n"
" return i\n"
" raise ValueError\n"
"\n"
"def find_lt(a, x):\n"
" 'x보다 작은 가장 오른쪽 값을 찾습니다'\n"
" i = bisect_left(a, x)\n"
" if i:\n"
" return a[i-1]\n"
" raise ValueError\n"
"\n"
"def find_le(a, x):\n"
" 'x보다 작거나 같은 가장 오른쪽 값을 찾습니다'\n"
" i = bisect_right(a, x)\n"
" if i:\n"
" return a[i-1]\n"
" raise ValueError\n"
"\n"
"def find_gt(a, x):\n"
" 'x보다 큰 가장 왼쪽 값을 찾습니다'\n"
" i = bisect_right(a, x)\n"
" if i != len(a):\n"
" return a[i]\n"
" raise ValueError\n"
"\n"
"def find_ge(a, x):\n"
" 'x보다 크거나 같은 가장 왼쪽 항목을 찾습니다'\n"
" i = bisect_left(a, x)\n"
" if i != len(a):\n"
" return a[i]\n"
" raise ValueError"
#: ../../library/bisect.rst:197
msgid "Examples"
msgstr "예제"
#: ../../library/bisect.rst:201
msgid ""
"The :py:func:`~bisect.bisect` function can be useful for numeric table "
"lookups. This example uses :py:func:`~bisect.bisect` to look up a letter "
"grade for an exam score (say) based on a set of ordered numeric "
"breakpoints: 90 and up is an 'A', 80 to 89 is a 'B', and so on::"
msgstr ""
":py:func:`~bisect.bisect` 함수는 숫자 테이블 조회에 유용할 수 있습니다. 이 예제는 "
":py:func:`~bisect.bisect`\\를 사용하여 (가령) 시험 점수에 대한 문자 등급을 조회하는데, 정렬된 숫자 경계점"
" 집합에 기반합니다: 90 이상은 'A', 80에서 89는 'B' 등입니다::"
#: ../../library/bisect.rst:206
msgid ""
">>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'):\n"
"... i = bisect(breakpoints, score)\n"
"... return grades[i]\n"
"...\n"
">>> [grade(score) for score in [33, 99, 77, 70, 89, 90, 100]]\n"
"['F', 'A', 'C', 'C', 'B', 'A', 'A']"
msgstr ""
">>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'):\n"
"... i = bisect(breakpoints, score)\n"
"... return grades[i]\n"
"...\n"
">>> [grade(score) for score in [33, 99, 77, 70, 89, 90, 100]]\n"
"['F', 'A', 'C', 'C', 'B', 'A', 'A']"
#: ../../library/bisect.rst:213
msgid ""
"The :py:func:`~bisect.bisect` and :py:func:`~bisect.insort` functions "
"also work with lists of tuples. The *key* argument can serve to extract "
"the field used for ordering records in a table::"
msgstr ""
#: ../../library/bisect.rst:217
msgid ""
">>> from collections import namedtuple\n"
">>> from operator import attrgetter\n"
">>> from bisect import bisect, insort\n"
">>> from pprint import pprint\n"
"\n"
">>> Movie = namedtuple('Movie', ('name', 'released', 'director'))\n"
"\n"
">>> movies = [\n"
"... Movie('Jaws', 1975, 'Spielberg'),\n"
"... Movie('Titanic', 1997, 'Cameron'),\n"
"... Movie('The Birds', 1963, 'Hitchcock'),\n"
"... Movie('Aliens', 1986, 'Cameron')\n"
"... ]\n"
"\n"
">>> # Find the first movie released after 1960\n"
">>> by_year = attrgetter('released')\n"
">>> movies.sort(key=by_year)\n"
">>> movies[bisect(movies, 1960, key=by_year)]\n"
"Movie(name='The Birds', released=1963, director='Hitchcock')\n"
"\n"
">>> # Insert a movie while maintaining sort order\n"
">>> romance = Movie('Love Story', 1970, 'Hiller')\n"
">>> insort(movies, romance, key=by_year)\n"
">>> pprint(movies)\n"
"[Movie(name='The Birds', released=1963, director='Hitchcock'),\n"
" Movie(name='Love Story', released=1970, director='Hiller'),\n"
" Movie(name='Jaws', released=1975, director='Spielberg'),\n"
" Movie(name='Aliens', released=1986, director='Cameron'),\n"
" Movie(name='Titanic', released=1997, director='Cameron')]"
msgstr ""
">>> from collections import namedtuple\n"
">>> from operator import attrgetter\n"
">>> from bisect import bisect, insort\n"
">>> from pprint import pprint\n"
"\n"
">>> Movie = namedtuple('Movie', ('name', 'released', 'director'))\n"
"\n"
">>> movies = [\n"
"... Movie('Jaws', 1975, 'Spielberg'),\n"
"... Movie('Titanic', 1997, 'Cameron'),\n"
"... Movie('The Birds', 1963, 'Hitchcock'),\n"
"... Movie('Aliens', 1986, 'Cameron')\n"
"... ]\n"
"\n"
">>> # 1960년 이후 개봉한 최초의 영화를 찾습니다\n"
">>> by_year = attrgetter('released')\n"
">>> movies.sort(key=by_year)\n"
">>> movies[bisect(movies, 1960, key=by_year)]\n"
"Movie(name='The Birds', released=1963, director='Hitchcock')\n"
"\n"
">>> # 정렬 순서를 유지하면서 영화를 삽입합니다\n"
">>> romance = Movie('Love Story', 1970, 'Hiller')\n"
">>> insort(movies, romance, key=by_year)\n"
">>> pprint(movies)\n"
"[Movie(name='The Birds', released=1963, director='Hitchcock'),\n"
" Movie(name='Love Story', released=1970, director='Hiller'),\n"
" Movie(name='Jaws', released=1975, director='Spielberg'),\n"
" Movie(name='Aliens', released=1986, director='Cameron'),\n"
" Movie(name='Titanic', released=1997, director='Cameron')]"
#: ../../library/bisect.rst:247
msgid ""
"If the key function is expensive, it is possible to avoid repeated "
"function calls by searching a list of precomputed keys to find the index "
"of a record::"
msgstr "키 함수가 비싸면, 미리 계산된 키 목록을 검색하여 레코드의 인덱스를 찾으면 반복돠는 함수 호출을 피할 수 있습니다::"
#: ../../library/bisect.rst:250
msgid ""
">>> data = [('red', 5), ('blue', 1), ('yellow', 8), ('black', 0)]\n"
">>> data.sort(key=lambda r: r[1]) # Or use operator.itemgetter(1).\n"
">>> keys = [r[1] for r in data] # Precompute a list of keys.\n"
">>> data[bisect_left(keys, 0)]\n"
"('black', 0)\n"
">>> data[bisect_left(keys, 1)]\n"
"('blue', 1)\n"
">>> data[bisect_left(keys, 5)]\n"
"('red', 5)\n"
">>> data[bisect_left(keys, 8)]\n"
"('yellow', 8)"
msgstr ""
">>> data = [('red', 5), ('blue', 1), ('yellow', 8), ('black', 0)]\n"
">>> data.sort(key=lambda r: r[1]) # 또는 operator.itemgetter(1) 를 "
"사용하세요.\n"
">>> keys = [r[1] for r in data] # 미리 계산된 키 리스트.\n"
">>> data[bisect_left(keys, 0)]\n"
"('black', 0)\n"
">>> data[bisect_left(keys, 1)]\n"
"('blue', 1)\n"
">>> data[bisect_left(keys, 5)]\n"
"('red', 5)\n"
">>> data[bisect_left(keys, 8)]\n"
"('yellow', 8)"
#~ msgid ""
#~ "Insert *x* in *a* in sorted order."
#~ " This is equivalent to "
#~ "``a.insert(bisect.bisect_left(a, x, lo, hi), "
#~ "x)`` assuming that *a* is already "
#~ "sorted. Keep in mind that the "
#~ "O(log n) search is dominated by "
#~ "the slow O(n) insertion step."
#~ msgstr ""
#~ "*a*\\에 *x*\\를 정렬된 순서로 삽입합니다. *a*\\가 "
#~ "이미 정렬되었다고 가정할 때 "
#~ "``a.insert(bisect.bisect_left(a, x, lo, hi), "
#~ "x)``\\와 동등합니다. O(log n) 검색이 느린 "
#~ "O(n) 삽입 단계에 가려짐에 유념하십시오."
#~ msgid ""
#~ "Unlike the :func:`sorted` function, it "
#~ "does not make sense for the "
#~ ":func:`bisect` functions to have *key* "
#~ "or *reversed* arguments because that "
#~ "would lead to an inefficient design "
#~ "(successive calls to bisect functions "
#~ "would not \"remember\" all of the "
#~ "previous key lookups)."
#~ msgstr ""
#~ ":func:`sorted` 함수와 달리, :func:`bisect` 함수는 "
#~ "*key* 나 *reversed* 인자를 갖는 것은 의미가"
#~ " 없는데, 비효율적인 설계 (연속적인 bisect 함수 "
#~ "호출이 이전의 모든 키 조회를 \"기억\"하지 못합니다)를"
#~ " 초래하기 때문입니다."
#~ msgid ""
#~ "This function first runs "
#~ ":py:func:`~bisect.bisect_left` to locate an "
#~ "insertion point. Next, it runs the "
#~ ":meth:`!insert` method on *a* to insert"
#~ " *x* at the appropriate position to"
#~ " maintain sort order."
#~ msgstr ""
#~ msgid ""
#~ "This function first runs "
#~ ":py:func:`~bisect.bisect_right` to locate an "
#~ "insertion point. Next, it runs the "
#~ ":meth:`!insert` method on *a* to insert"
#~ " *x* at the appropriate position to"
#~ " maintain sort order."
#~ msgstr ""