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
- C
- ubuntu
- label
- pip
- JSON
- C#
- SSH
- Selenium
- Python
- Docker
- pytorch
- paramiko
- 기타 연주
- Linux
- LIST
- C++
- error
- windows forms
- 프로그래머스
- Numpy
- Visual Studio
- 채보
- mysql
- 오류
- 컨테이너
- OpenCV
- VS Code
- 핑거스타일
- pandas
- YOLO
Archives
- Today
- Total
목록우선순위 큐 (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