- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 배틀
- ubuntu
- 알고리즘
- 시뮬레이션
- 비주얼 스튜디오 코드
- 아파치
- BFS
- C++
- Graph
- dynamic programming
- Algorithm
- 다이나믹 프로그래밍
- 백준
- 공연
- dp
- cube sound
- 동적계획법
- simulation
- 그래프
- sw expert academy
- Visual Studio Code
- 춤
- 넓이 우선 탐색
- dfs
- apache
- baek joon
- 우분투
- BOJ
- filezila server
- 삼성 알고리즘
목록코딩/C++ (9)
댄코 - 댄싱코딩
#include #include using namespace std;int main(){ int a = 10; //int to string string str = to_string(a); //string to int int b = stoi(str); cout
#include using namespace std;int main(){ char ch[100] = "FF"; //10진수로 변환 int nDec = (int)strtol(ch, NULL, 16); //10진수 출력 cout
1.string to char char ch[100]; string a = "I wanna go to bed"; strcpy(ch,a.c_str()); cout
구조체를 이용해 Binary트리를 구현해 보자 #include typedef struct node{ int key; node* left; node* right;}node; //구조체 선언int main(){ node* root = new node; //root node 생성 root->key = 1; node* lNode = new node; //왼쪽 노드 생성 node* rNode = new node; //오른쪽 노드 생성 lNode->key = 2; rNode->key = 3; root->left = lNode; //루트 왼쪽에 lNode연결 root->right = rNode; //루트 오른쪽에 rNode연결 printf("root:%d left:%d right:%d\n",root->key,root..
다음 수열을 자동으로 찾아주는 next_permutation 사용 예제이다.사용하기 전에 배열은 정렬 되어있어야 한다.int main(){ int arr[4] = {1,1,3,4}; while(next_permutation(arr,arr+4)){ for(int i = 0;i
1.strtok char s[20] = "h e l"; char *pch; pch = strtok(s," "); while(pch != NULL){ cout
1.ofstream이용 키보드 입력받아 파일에 출력하기 char name[20]; ofstream fout; fout.open("output.txt"); cin.getline(name,sizeof(name),'\n'); fout
자바스크립트를 쓰다보면 배열 및 리스트 관리하기가 굉장히 편하다. 가령, 리스트 안에 있는 모든 원소를 꺼내려면 for(var key in list) 와 같이 간단하게 리스트 안의 원소들을 출력 할 수 있지만 C++은 list만으로는 원소에 접근하기가 힘들다. list의 원소들을 전부 출력하려면 iterator(반복자)를 이용해야한다. 사용 방법은 다음과 같다. #include #include //list header#include //iterator headerusing namespace std; int main(){ list li; //리스트 선언 list::iterator it; //반복자 선언 for(int i = 0;i < 10;i++){ li.push_back(i); //뒤쪽으로 원소를 0부터..