How to use and when is good use memmove in C?

前端 未结 3 1280
野的像风
野的像风 2021-02-19 12:06

I have two doubt about use of memmove():

  • When is preferable use this function instead of use another function (i.e. a created own functio
3条回答
  •  旧时难觅i
    2021-02-19 12:58

    1. memmove may be faster but it probably will never be slower than your own function for copying data around (it's usually coded in carefully crafted assembly to move stuff around in the most efficient way possible on the current architecture);
    2. it depends on what you want to do with that array... if you want to copy its content to another array arr will suffice (and, as the length parameter, you should do sizeof(*arr)*N where N is the number of elements to copy).

    By the way, if source and destination and the copy are nonoverlapping memcpy may be faster.

    I want to delete an element from the array and shift left the element of the same array.

    int arr[N];
    /* ... */
    /* Let's say you want to remove the element i (error checking on i omitted) */
    memmove(arr+i, arr+i+1, (N-i-1)*sizeof(*arr));
    /* or, if you prefer array indexing over pointer arithmetics: */
    memmove(&arr[i], &arr[i+1], (N-i-1)*sizeof(*arr));
    

    (sizeof(*arr) means "get the size of an element of the array")

提交回复
热议问题