[C++] ๋ฐฐ์ด๋ณต์ฌ memcpy, copy
memcpy #include // C++ ์์๋ void* memcpy(void* destination, const void* source, size_t num); ์์ memcpy(arr, tarr, sizeof(arr)); copy #include copy(initArray, initArray + n, v.begin()); // initArray๋ด์ฉ์ n๋งํผ v์ ๋ณต์ฌ copy(v.begin(), v.end(), v2.begin()); // v์ ๋ด์ฉ์ v2์ ๋ณต์ฌ ์์ธ template OutputIterator copy (InputIterator first, InputIterator last, OutputIterator result) { while (first!=last) { *result = *f..
2020. 3. 23.