일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 아이유
- I'm fine thank you
- 레이디스코드
- 스위트라떼
- 오라클 아키텍처
- 니가 참 좋아
- DBMS
- 핑거스타일
- 슬픔의 후에
- 말 더듬
- nginx
- SQL 처리
- 러블리즈
- 6학년 8반 1분단
- db
- index
- Inside Of Me
- 데이터베이스
- IT
- oracle
- 악보
- 기타
- 신입
- 천공의 시간
- DBMS 구성요소
- 장범준
- 오라클
- 개발자
- 인덱스
- 봄 사랑 벚꽃 말고
목록전체 글 (125)
취미로 음악을 하는 개발자
#include #include #include using namespace std; int main() { list arr; list::iterator it; int temp; int max = 0; int same = 0; for (int i = 0; i > temp; if (max < temp) max = temp; it = find(arr.begin(), arr.end(), temp); if (it != arr.end()) same = temp; else arr.push_back(temp); } if (arr.size() == 3) { cout
- 클래스 vs 구조체 : 클래스는 Default가 private타입, 구조체는 public타입이므로 코드 작성 시 명시를 안해주면 각각의 Default로 정해진다. 나머지는 아직 차이를 모르겠다. struct TV{ private: bool powerOn; int ch, vol; public: // default void on() {} void off() {} void setCh(int chl) {} void setVol(int volume){}}; class TV{ private: // default bool powerOn; int ch, vol; public: void on() {} void off() {} void setCh(int chl) {} void setVol(int volume){}}; ..
#include using namespace std;void sort(int *num, int size);int isPrime(int n);int main() { int a; cin >> a; int elem[50]; int index = 0; int count = 2; while (a != 1) { if (isPrime(a) == 1) { elem[index++] = a; break; } else if (a % count == 0 && isPrime(count) == 1) { a /= count; elem[index++] = count; count = 2; } else count++; } sort(elem, index); for (int i = 0; i < index; i++) cout
#include using namespace std; int main() { int n; cin >> n; int input[2*n]; for (int i = 0; i > input[i] >> input[i+1]; } for (int i = 0; i b) { max = a; min = b; } else if (a == b) { cout
#include #include #include using namespace std;int travelCnt(int* arr, int col){ // 비용 계산 return arr[col];} int fib(int cnt) { if (cnt > 0) return cnt * fib(cnt-1); else return 1;} int main() { int N; cin >> N; int W[N][N]; vector v(N); int arrSize = fib(N); int arr[arrSize][N+1]; bool isZero = false; // 경로에 0이 있는가 for (int i = 0; i < N; i++) v[i] = i; int index = 0; int cost[arrSize]; do{ // 모든..