Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Linux
- 기타 연주
- 채보
- pandas
- VS Code
- C
- 핑거스타일
- C#
- label
- pip
- Visual Studio
- ubuntu
- 프로그래머스
- 컨테이너
- Python
- JSON
- mysql
- OpenCV
- C++
- error
- pytorch
- YOLO
- 오류
- Selenium
- Numpy
- Docker
- SSH
- windows forms
- paramiko
- LIST
Archives
- Today
- Total
목록priority queue (1)
기계는 거짓말하지 않는다
Python Priority Queue
파이썬에서 우선순위 큐는 queue 모듈의 PriorityQueue를 import 하고 put. get으로 사용한다. put 시에 임의로 순위를 지정해 줄 수 있다. (ex: q.put(1, "B")) 객체일 경우 조건에 따른 정렬 기준 설정이 가능하다. 부호에 따라 min, max가 바뀐다. from queue import PriorityQueue class TempClass: def __init__(self, string:str, index:int): if type(string) is not str: raise Exception("not string") if type(index) is not int: raise Exception("not integer") self.string = string self..
Python
2021. 10. 13. 12:52