일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 반복문
- 포인터
- 백준
- OOP
- predictive analysis
- programming
- Object Oriented Programming
- 오블완
- 배열
- 함수
- Python
- Pre-processing
- string
- 파이썬
- 문자열
- Class
- pass by reference
- raw data
- array
- baekjoon
- Deep Learning
- const
- 티스토리챌린지
- 알고리즘
- Data Science
- vscode
- pointer
- C++
- function
- assignment operator
- Today
- Total
목록2025/03 (25)
Channi Studies

A list is a common ADT for holding ordered data, having operations like append a data item, remove a data item, search whether a data item exists, and print the list.Since it's an Abstract Data Type, a user need not have knowledge of the internal implementation of the list ADT. In many different languages, even though they can have a variation on the available operaitons and its implementation, ..

Today, I learned about AUTOCOMMIT, COMMIT, and ROLLBACK keywords in MySQL. AUTOCOMMIT is a mode; by default, AUTOCOMMIT is set to ON. When AUTOCOMMIT is on (by default), every change you make is immediately nad permanently saved. It means that you can't roll back if you made an error because each statement is automatically committed.We can turn it off by using following statement:SET AUTOCOMMIT..

Updating and Deleting Data 지난 포스트에 이어서, 현재 우리가 가지고 있는 데이터는 다음과 같습니다. 여섯번째 행의 데이터, Plankton 데이터의 시급과 취직 날짜가 NULL 인 것을 볼 수 있습니다. 우리는 이 데이터들을 업데이트 하고 싶습니다. 이 때, 우리는 UPDATE 키워드를 사용합니다. UPDATE 키워드에 추가적으로 SET 키워드로 업데이트할 값을 지정해주고, WHERE 키워드로 변경할 대상 row를 특정합니다. UPDATE employeesSET hourly_pay = 15.00WHERE employee_id = 6; We can also update mutiple columns at once, by separating them with commas. (Noti..

Euler's Method, 오일러 방법은 미분방정식의 해를 근사치로 구하는 recursive numerical analysis method 입니다. 프로그래밍에 익숙한 학생들은 recursive function을 생각하면 정확히 같습니다. Given dy/dx = f(x, y) 에서, f(x, y) 는 dy/dx 이기 때문에 그 자체로 방정식의 해 y = f(x) 의 기울기 (slope)를 나타냅니다. 그리고 주어진 initial value가 y(x₀) = y₀ 이라고 했을 때, 다음과 같은 관계가 성립합니다. y_(n + 1) = y_n + h * f(x_n, y_n) 예를 들어 x₀ = 2, y₀ = 3 이 주어졌다면,y₁ = y₀ + h * f(x₀, y₀) = 3 + h * f(2, 3) 이 ..