일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 의미와 무의미의 경계에서
- UnrealMP
- oracle
- 5639
- 2단계로킹
- Linux
- 백준
- 데이터베이스 배움터
- 언리얼 커스텀 플러그인
- 비재귀셰그먼트
- hackerank
- SQL
- 오손데이터읽기
- FBX
- 백준 1253번
- 민겸수
- 트랜잭션 관리
- command not found
- Unreal
- 셰그먼트트리
- Security
- 실습
- 1253번
- C++
- UActor
- objtofbx
- 언리얼 플러그인
- 1759번
- OS
- 1967번
- Today
- Total
목록전체 글 (118)
fatalite
다익스트라#include #include #include #include #include using namespace std;int MAX_NUM = 100000000;vector> GraphEdges;vector Dijkstra(int start){ vector Dist; for(int i = 0 ; i q; q.push(start); while(!q.empty()) { int cur = q.front(); q.pop(); for(int i = 0 ; i words) { // Make Edges words.push_back(begin); GraphEdges = vector>(words.size()); for..
#include #include #include #include #include using namespace std;vector preOrder;vector postOrder;void PostOrder(vector>& nodes, int x , int y, int nodeNum, int minX, int maxX){ if(y leftNode; vector rightNode; vector> leftNodes; vector> rightNodes; for(vector node : nodes) { if(y node[0]) leftNodes.push_back(node); } int findingY = y; while(leftNode.empty()) ..
관련 개념n진법, 구현 이거 이렇게 풀어도 되는건가;; #include #include #include #include #include using namespace std;vector Get10ToN(int n, int number){ vector answer; if(number == 0) { answer.push_back(0); } while(number > 0) { answer.push_back(number % n); number /= n; } std::reverse(answer.begin(), answer.end()); return answer;}string solution(int n, int t, int m, i..