일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 지도학습
- OpenAI
- GPT-4
- LG Aimers 4th
- regression
- 머신러닝
- ChatGPT
- Classification
- supervised learning
- LLM
- 딥러닝
- PCA
- 오블완
- 분류
- 해커톤
- AI
- LG Aimers
- deep learning
- gpt
- 회귀
- 티스토리챌린지
- LG
- Today
- Total
목록3학년 1학기 전공/객체지향 프로그래밍 (7)
SYDev
경희대학교 이대호 교수님의 수업 자료를 바탕으로 작성한 글입니다. File Streams#include #include void save_vector (const std::string& filename, const std::vector& vec) { std::ofstream out(filename); if(out.good()) { int n = vec.size(); for(int i = 0; i & vec) { std::ifstream in(filename); if(in.good()) { vec.clear(); int value; while(in >> value) vec.push_back(value); in...
경희대학교 이대호 교수님의 수업자료를 참고한 게시물입니다. #include int main(int argc, const char * argv[]) { //int (*p)[2] -> int형이 들어가는 크기가 2인 array(= int a[][2]), int *p[2] -> int형 pointer를 요소로 하는 크기가 2인 array int a1[3] = {1, 2, 3}; int a2[2][3] = {{1, 2, 3}, {4, 5, 6}}; int(*p2)[3] = new int[2][3]; //int p2[][3] = new int[2][3], static:3 dynamic:2 delete[] p2; int** p3 = new int * [2]..
경희대학교 컴퓨터공학부 이대호 교수님의 객체지향프로그래밍 수업 자료를 참고한 정리본 while(cin) #include #include using namespace std; int main(void) { cout
경희대학교 컴퓨터공학부 이대호 교수님의 객체지향프로그래밍 수업 자료를 참고한 정리본 Type bool Boolean value true, false 1, 0 0이 아닌 정수는 모두 true Relational operators Result: Boolean value Boolean Expressions 우선순위 () 단항 *, /, % +, - = ==, != = #include using namespace std; int main(void) { if(!10) { cout
경희대학교 컴퓨터공학부 이대호 교수님의 객체지향프로그래밍 수업 자료를 참고한 정리본 Expressions Operator and Operand(연산자와 피연산자) symbol and object of operations 5 + 10 -> operand를 2개 필요로하는 binary(이항) 연산자 -x -> operand를 1개 필요로 하는 unary(단항) 연산자 5 + 10 / 2 -> precedence: 연산자 우선순위 a = b = 2 -> associativity: 일반적인 산술연산은 왼쪽부터 오른쪽으로 연산, but 할당(assignment)연산의 경우에는 오른쪽에서 왼쪽으로 Arithmetic Operators +, -, *, /, % -> %연산자의 피연산자는 정수 +, - < *, /, ..
경희대학교 컴퓨터공학부 이대호 교수님의 객체지향프로그래밍 수업 자료를 참고한 정리본 Values and Variables #include using namespace std; int main() { cout
경희대학교 컴퓨터공학부 이대호 교수님의 객체지향프로그래밍 수업 자료를 참고한 정리본 Software software: 명령어 set 2진수 해독(디코딩), 2진수로 작성(인코딩) FORTRAN, COBLE, C, Python, Java, ... Programming Languages - Machine Language Low-level language 직접적으로 컴퓨터를 컨트롤 -> CPU, ALU(Arithmetic Logic Unit), Memory, ... - Assembly Language Low-level language Symbolic language -> 기호화된 언어 Assembler -> 기호화된 언어를 번역해주는 역할 - High-level Language Use natural langu..