일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준
- 우선순위큐
- dfs
- 정렬
- 시스템콜
- 동적계획법
- sql고득점kit
- 문자열
- 다이나믹프로그래밍
- MAP
- substr
- String
- MySQL
- C++
- 리시프
- 플로이드와샬
- 최대공약수
- 스택
- DP
- 코테
- Dijkstra
- unordered_map
- set
- vector
- 알고리즘
- 프로그래머스
- 코테준비
- 코딩테스트연습
- 참고 문헌 : MACHINE LEARNING 기계학습 _ 오일석
- 다익스트라
- Today
- Total
목록전체 글 (74)
YeJin's Footsteps

SparseMatrix SparseMatrix::Multiply(SparseMatrix b) { // Return the product of the sparse matrices *this and b. if (cols != b.rows) throw "Incompatible matrices"; SparseMatrix bXpose = b.FastTranspose(); SparseMatrix d(rows, b.cols, 0); int currRowIndex = 0, currRowBegin = 0, currRowA = smArray[0].row; // set boundary conditions if (terms == capacity) ChangeSize1D(terms + 1); bXpose.ChangeSize1D..

Model Transformation void glLoadIdentity(); // 항등 행렬로 초기화 void glMatrixMode(GLenum mode) - GL_MODELVIEW // 제일 많이 씀(물체를 움직일 때) - GL_PROJECTION // 얼마만큼의 3차원을 어떤방식의 2차원으로 보내줄 지 - GL_TEXTURE // 물체 표면의 질감 void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) // 회전 함수 void glTranslatef(GLfloat dx, GLfloat dy, GLfloat dz) //이동 함수 void glScalef(GLfloat sx, GLfloat sy, GLfloat sz) //크기 조절함수 (1.0..