| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Object Oriented Programming
- 오블완
- predictive analysis
- 반복문
- function
- OOP
- Deep Learning
- vscode
- Python
- pass by reference
- 파이썬
- 포인터
- Pre-processing
- baekjoon
- 티스토리챌린지
- raw data
- array
- 함수
- string
- pointer
- assignment operator
- 배열
- 백준
- const
- Class
- C++
- Data Science
- programming
- 알고리즘
- 문자열
- Today
- Total
목록Data Science (94)
Channi Studies
Let's go through a case study of data science to understand what is it about. Black Americans Are Much More Likely to Face Tax Audits, Study Finds (Published 2023)A new report documents systemic discrimination in how the I.R.S. selects taxpayers to be audited, with implications for a debate on the agency’s funding.www.nytimes.comNew York times reported said that the IRS seems to be exhibiting s..
A topological sort of a directed, acyclic graph produces a list of graph's vertices such that for every edge from a vertex X to a vertex Y, X comes before Y in the list. There can be more than one valid topoligcal sort. Again, the graph must be acyclic and riected in order to apply topological sorting. The time complexity and space complexity of topological sorting is O(|V| + |E|).
The Bellman-Ford shortest path algorithm, created by Richard Bellman and Lester Ford, Jr,. determines the shortest path from a start vertex to each vertex in a graph. For each vertex, the Bellman-Ford algorithm determines the vertex's distance and predecessor pointer. A vertex's distance is the shortest path distance from the start vertex. A vertex's predecessor pointer points to the previous ve..
Finding the shortest path between vertices in a graph has many applications. Dijkstra's shortest path algorithm, created by Edsger Dijkstra, determines the shortest path from a start vertex to each vertex in a graph. For each vertex, Dijkstra's algorithm determines the vertex's distance and predecessor pointer.A vertex's distance is the shortest path distance from the start vertex. A vertex's pr..