Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- build:12
- aes decrypt
- aes-ctr
- ousterstudio
- ouster
- ar과 make 사용법
- gcc 실행
- ros
- gcc
- geth 설치 안됨
- aes ctr
- ethereum
- aes-128-ctr
- aes_ctr
- c
- Linux
- studio
- OS1
- 시스템프로그래밍
- gcc를 사용한 컴파일 예제
- build:15
- geth 설치 에러
- build 에러
- c언어로 쉽게 풀어쓴 자료구조
- floyld
- catkin_make
- aes ctr decrypt
- LIDAR
- geth 설치
- error
Archives
- Today
- Total
목록컴퓨터 알고리즘 연습 (1)
CODERJH
Floyd의 최단 경로 알고리즘
Floyd의 최단 경로 알고리즘은 그래프에 존재하는 모든 정점 사이의 최단 경로를 한번에 모두 찾아주는 알고리즘이다. #include #include #define INF typedef struct FloydGraph { int n; int weight[100][100]; } FloydGraph; int cnt; int distance[100][100]; void GraphPrint(FloydGraph* f) { int i, j; printf("--> %d 번째\n\n",++cnt); for (i = 0; i n; i++) { for (j = 0; j n; j++) { if (distance[i][j] == INF) printf(" * "); else printf("%3d ", distance[i][j]..
컴퓨터 알고리즘 연습
2022. 5. 10. 23:57