일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 오류검출
- 데이터 전송
- mariadb
- reducible
- tcp 프로토콜
- 플로이드워셜
- 프레임 구조
- IEEE 802
- 항해99
- i-type
- 그리디 알고리즘
- 주기신호
- 오블완
- 순서번호
- 토큰 버스
- 스레드
- 비주기신호
- 코딩테스트준비
- til
- 오류제어
- 개발자취업
- git merge
- xv6
- 우분투db
- 99클럽
- 서비스 프리미티브
- leetcode
- tcp 세그먼트
- 티스토리챌린지
- well known 포트
Archives
- Today
- Total
목록C++ (1)
Unfazed❗️🎯
Vector Declaration Differences/ vector<int> adj(), vector<int> adj[], vector<vector<int>> adj
difference between vector adj(4); and vector adj[4]; ? The two statements you provided are C++ code related to the Standard Template Library's (STL) vector container. They declare vector objects in different ways. Here's the distinction between them 1) vector adj(4);After this declaration, adj can be treated as a vector with 4 elements, all of which are initialized to 0. This creates a single ve..
C++
2023. 9. 14. 06:53