티스토리 뷰
- list에 파이썬 객체를 추가할 때, 대소비교가 가능한 경우 bisect 모듈의 insort 함수를 이용하면 정렬된 상태를 유지하면서 객체를 추가할 수 있다.
- 정렬된 상태로 추가하면 추후 search 할 때 좋다.
import bisect
import random
l = []
for i in range(10):
x = random.random()
print x
bisect.insort(l, x)
print l
출력:
0.0805129763661
0.166575560196
0.477348563183
0.532650178858
0.697167949906
0.513122663452
0.424739746705
0.557318727948
0.813420926411
0.00561738393183
[0.005617383931829867,
0.08051297636605503,
0.1665755601957759,
0.4247397467045497,
0.47734856318250607,
0.5131226634515295,
0.5326501788575781,
0.5573187279478968,
0.6971679499055589,
0.813420926410629]
'Python > 요리 방법' 카테고리의 다른 글
TCGA mis-sense 돌연변이 데이터를 환자별로 추출하는 방법 (0) | 2015.12.21 |
---|---|
CanDrA input file 생성을 위한 TCGA somatic mutation 파일 파싱하기 (0) | 2015.12.21 |
Cython 간단한 예제 (0) | 2015.02.28 |
OpenBLAS를 이용하여 numpy와 scipy 설치 (0) | 2014.06.10 |
몬티홀(Monty Hall) 문제 코드 (0) | 2014.02.17 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 볼륨 낮춤
- 볼륨 조절
- how to solve it
- 설치
- armadillo c++
- Item 9
- TensorBoard
- Accelerated C++
- pandas
- matrix multiplication
- GSX 1000 pro
- volume dial
- QPrinter.Letter
- TCGA
- structure
- CanDrA
- C++
- dll
- QT
- MSVC++
- tensorflow
- 이상한 문자
- Python
- PyQt
- QPrinter.A4
- destructor
- ctypes
- cython
- GSX 1200 pro
- Visual C++
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함