일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래밍
- 코드블럭 오류
- Machine Learning
- 형변환
- Runtime constants
- sizeof()
- standford University
- 코딩테스트
- #define
- 기계학습
- 홍정모님
- 본즈앤올
- compile time constants
- decimal
- coursera
- Greedy
- 이코테
- classification problem
- 기계학습 기초
- CLion
- 학습 알고리즘
- C++
- #endif
- Andrew Ng
- 연산자
- regression problem
- algorithm
- 단항연산자
- const
- 나동빈님
- Today
- Total
목록홍정모님 (4)
wellcome_공부일기
1. 이진수(Binary)와 십진수(Decimal) 2. 십진수를 이진수로 바꾸기 3. 이진수를 십진수로 바꾸기 4. 이진수끼리 더하는 방법(음/양의 정수일 경우)(To be contined...) 5. 음의 이진수를 10진수로 나타낼려면?(To be contined...) 이진수(Binary)와 십진수(Decimal) 이진수(binary)는 1과 0 두가지만을 통해서 숫자를 표현 것을 말합니다. 컴퓨터는 전압을 이용해서 숫자를 구분하기 때문에 높음과 낮음 두가지 정보만 나타남으로 0과 1을 이용합니다. 10진수는 ' base 10'으로 0부터 9까지, 10가지의 유효한 숫자를 가집니다. (2진수는 0~1을 8진수는 0~7까지 .etc) -> 2진수와 8진수, 10진수 16진수에 대해 더 알아보기 her..
* 해당 글은 홍정모님의 따라 배우는 C++을 공부한 토대로 작성되었습니다. 1. 논리 연산자(Logical operator) 2. 논리 연산자(Logical operator) 주의사항 3. Short circuit evaluation 4. De Morgan’s law 5. C++에서 XOR 사용하기(To be continued) 6. Mixing ANDs and ORs 논리 연산자(Logical operator) 논리 연산자(Logical operator)는 true 혹은 false인 것을 묻는 Boolean 값으로 구분하기 때문에 이해가 어렵지는 않습니다. 논리 연산자의 종류 //Logical NOT bool x = true; cout
1. 사이즈 연산자(Sizeof operator) 2. 쉼표 연산자(Comma operator) 3. 조건부 연산자(Conditional operator) 사이즈 연산자(Sizeof operator) #include using namespace std; int main() { // 4byte = 32bit float a; cout
1. Runtime constants 2. Compile time constants 3. constexpr Runtime vs compile time constants 상수에는 literal constants와 symbolic constants로 두가지 종류가 나뉘어져 있습니다. literal constants은 코드에 직접적으로 삽입된 값을 말하며, symbolic constants는 변하지 않는 고정된 값을 나타냅니다. 하지만, 상수(constants)를 사실상 Runtime constants와 compile time constants로 나뉠 수 있습니다. Runtime과 Compile time은 각각 다른 단계의 소프트웨어 개발을 가르키는 프로그래밍 용어입니다. Compile time은 우리가 입력..