| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- C++
- 함수
- Deep Learning
- Data Science
- Object Oriented Programming
- pointer
- 배열
- assignment operator
- 파이썬
- programming
- string
- predictive analysis
- 알고리즘
- function
- 백준
- pass by reference
- 문자열
- vscode
- array
- const
- 포인터
- OOP
- 오블완
- baekjoon
- raw data
- Pre-processing
- Python
- Class
- 반복문
- 티스토리챌린지
- Today
- Total
목록Data Science (94)
Channi Studies
GraphsA graph is a data structure for representing connections among items, and consists of vertices connected by edges.- A vertex (or node) represents an item in a graph.- An edge represents a connection between two vertices in a graph. In a graph, - Two vertices are adjacent if connected by an edge.- A path is a sequence of edges leading form a source vertex to a destination vertex. The path..
Implementing a Set with a BSTA set can be implemented in Python using a Binary Search Table (BST) to store set elements. In practice, a balanced BST or hash table is often used to efficiently implement a set, but a BST will suffice for all necessary set opeartions. Each node's data stores a set element. References to left child, right child, and parent nodes are also included. External functiona..
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..