| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Pre-processing
- string
- C++
- 파이썬
- 반복문
- 오블완
- Deep Learning
- pointer
- baekjoon
- Class
- programming
- OOP
- predictive analysis
- 배열
- array
- assignment operator
- 백준
- raw data
- Python
- 알고리즘
- const
- 문자열
- 함수
- 포인터
- pass by reference
- vscode
- Object Oriented Programming
- 티스토리챌린지
- Data Science
- function
- Today
- Total
목록전체 글 (188)
Channi Studies
Union, Intersection, and DifferenceIf you are familiar with set notations from your math course, than you would know all these already. The union of sets X and Y, denoted as X ∪ Y, is a set that contains every element from X, every element from Y, and no duplicates. The intersection of sets X and Y, denoted as X ∩ Y, is a set that contains every element that is in both X and Y, no duplicates. Th..
SET ADTA set is a collection of distinct elements.A set add operation adds an element to the set, provided an equal element doesn't already exist in the set. (No duplicates)Ex. The set with 3, 7, and 9 is equivalent to the set with integers 9, 3, and 7. 만약 Python의 Set에 대해서 알고 계시다면, 그것과 동일하다고 생각할 수 있겠습니다. Element Keys and RemovalSet elements may be primitive data values, such as numbers or strin..
Treap BasicsA BST built from inserts of N nodes having random-ordered keys stays well-balanced and thus has near-minimum height, meaning searches, inserts, and deletes are O(logN).Because insertion order may not be controllable, a data structure that somehow randomizes BST insertions is desirable. A treap uses a main key that maintains a binary search tree oderering property, and a secondary ke..
Priority Queue ADTA priority queue is a queue where each item has a priority, and items with higher priority are closer to the front of the queue than items with lower priority.The priority queue enqueue operation inserts an item such that the item is closer to the front thatn all items of lower priority, and closer to the end than all items of equal or higher priority.The priority queue dequeue..