일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 장고란
- getline
- string 함수
- 입출력 패턴
- 백준
- 구조체와 클래스의 공통점 및 차이점
- k-eta
- vscode
- 프레임워크와 라이브러리의 차이
- scanf
- double ended queue
- Django란
- 엑셀
- Django Nodejs 차이점
- 연결요소
- 시간복잡도
- correlation coefficient
- 매크로
- c++
- 입/출력
- Django의 편의성
- 이분그래프
- 표준 입출력
- iOS14
- string 메소드
- 2557
- 자료구조
- 알고리즘 공부방법
- UI한글변경
- EOF
Archives
- Today
- Total
목록알고리즘/백준풀이3. 큐 (2)
Storage Gonie
(2) [C++, Java] 백준 No.1158 : 조세퍼스 문제
문제 풀이 # C++ #include #include using namespace std; int main(void) { ios::sync_with_stdio(false); int N; int K; cin >> N >> K; queue q; // 1 ~ N의 숫자를 큐에 push하여 초기상태 만들기 for (int i = 1 ; i
알고리즘/백준풀이3. 큐
2019. 4. 25. 15:14
(1) [C++, Java] 백준 No.10845 : 큐(기본구현)
문제 풀이 # C++(직접구현) #include using namespace std; struct Queue{ int data[10000]; // 입력의 조건을 보고 충분한 크기로 해줘야 채점시 런타임에러가 발생하지 않는다. int begin, end; // 멤버변수를 초기화 해주는 생성자(필수) Queue(){ begin = 0; end = 0; } void push(int num) { data[end] = num; end += 1; } int pop() { if (empty()) return -1; else { begin += 1; return data[begin-1]; } } int size() { return end - begin; } bool empty() { return (size() == 0..
알고리즘/백준풀이3. 큐
2019. 4. 25. 14:02