Home
Daniel Oh
Cancel

C EXAMPLES: CLASS

필자의 대학 코스 Advanced Programming에서 사용된 예시를 발췌, 정리했습니다. FINAL 시험에서 좋은 성과를 바라며… Rectangle Class rectangle.h #ifndef RECTANGLE_H #define RECTANGLE_H #include <iostream> class rectangle { doub...

C EXAMPLES: STRUCT

필자의 대학 코스 Advanced Programming에서 사용된 예시를 발췌, 정리했습니다. FINAL 시험에서 좋은 성과를 바라며… POINT Point라는 구조체는 x좌표와 y좌표로 정의될 수 있습니다. #include <iostream> #include <cmath> // for sqrt struct point { ...

DANIEL's Histroty of Orthodontic Correction

What is Orthodontic Correction? Simply put, it means wearing braces on crooked teeth, for straightening (teeth transformation). I started to wear braces from Feb 8, 2022. So I’m in 3 month with b...

문제로 풀어보는 알고리즘 01장: 재귀적 프로그래밍

n! 계산하기 반복문을 이용하여 n! 계산하기 n!은 다음과 같이 정의된다. [n! = 1 \times 2 \times \cdots \times n] int factorial(int n) { int r = 1; for(int i = 1; i <= n; i++) r *= i; return r; } 일정...

C EXAMPLES: RECURSION

필자의 대학 코스 Advanced Programming에서 사용된 예시를 발췌, 정리했습니다. Calculate Power Base Case (y = 0) \[x^{0} = 1\] Recursive Case (y >= 1) \[x^{y} = x \times x^{y-1}\] ...

DANIEL's MIDTERM SCHEDULE & STRATEGY

Schedule of MIDTERM 0416 10:30 Calculus II 0421 13:00 Global Engineering and English Comminication 0421 14:30 Advanced Programming 0422 10:30 Chinise 0427 Assignment 3 from Data...

C LANGUAGE QUIZ 00: Pointer

Problem 1: Casting double a = 0; double* b = &a; double c = __a - *b; What shoud be filled in for the __? a. * b. & c. (nothing) Problem 2: Casting void f(int a, int* b, int*...

데이터 마이닝 00: Introduction to Data Mining

데이터 마이닝이란 무엇인가? 큰 DATASET에서 알려지지 않은, 유효한, 잠재적으로 쓸만한, 이해할만한 패턴의 발견 DATASET의 분석은 관찰되지 않은 관계를 찾아내고 데이터를 혁신적인 방법(이해가 쉽게 되고, 쓸만한)으로 정리 큰 데이터셋에서 반자동적인 분석을 통해 이러한 특성을 가진 패턴을 찾는다. Valid:...

문제로 풀어보는 알고리즘 00장

최댓값과 최솟값 두 수를 받고 최대/최소를 반환하는 함수 int max(int x, int y) { if (x > y) { return x; } return y; } int min(int x, int y) { if (x < y) { return x; } ...

Hello World!

Hello World, this is my first blog post. I hope you love my writing! 안녕 세상, 이것은 저의 블로그 첫 포스팅입니다. 제 글을 즐기시길 바래요!

Trending Tags