原创 實現memcpy和memmove以及大數據url交集。

1.模擬實現C庫的memcpy和memmove。 void* myMemcpy(void* dst,const void* src,size_t size) { assert(src); assert(dst);