memcmp與strncmp函數

1、memcmp含義less

Compare characters in two buffers.ide

int memcmp(    const void* buf1,    const void* buf2,    size_t count );函數

inline int wmemcmp (   const  wchar_t* buf1, const wchar_t* buf2, size_t count);spa

Parametersblog

       buf1    :  First buffer.
       buf2    :  Second buffer.
       count   : Number of characters.
       Return Values   : The return value indicates the relationship between the buffers.

 

       Return Value Relationship of First count Bytes of buf1 and buf2
        < 0         buf1 less than buf2
        0         buf1 identical to buf2

> 0ip

 

buf1 greater than buf2內存

 2、memcmp與strncmp的區別ci

int   memcmp(const   void   *   cs,const   void   *   ct,size_t   count)  
  {  
字符串

  const   unsigned   char   *su1,   *su2;  
  int   res   =   0;  
   
  for(   su1   =   cs,   su2   =   ct;   0   <   count;   ++su1,   ++su2,   count--)  
  if   ((res   =   *su1   -   *su2)   !=   0)  
  break;  
  return   res;  
}  
   
  int   strncmp(const   char   *   cs,const   char   *   ct,size_t   count)  
  {  
  register   signed   char   __res   =   0;       
  while   (count)   {  
  if   ((__res   =   *cs   -   *ct++)   !=   0   ||   !*cs++)  
  break;  
  count--;  
  }      
  return   __res;  
  }
io

一、這兩個函數的差異其實仍是挺大的,差異在這裏:     
  對於memcmp(),若是兩個字符串相同並且count大於字符串長度的話,memcmp不會在\0處停下來,會繼續比較\0後面的內存單元,直到_res不爲零或者達到count次數。      
  對於strncmp(),因爲((__res   =   *cs   -   *ct++)   !=   0   ||   !*cs++)的存在,比較一定會在最短的字符串的末尾停下來,即便count還未爲零。具體的例子:      
  char   a1[]="ABCD";  
  char   a2[]="ABCD";       
  對於memcmp(a1,a2,10),memcmp在兩個字符串的\0以後繼續比較  
  對於strncmp(a1,a2,10),strncmp在兩個字符串的末尾停下,再也不繼續比較。       
  因此,若是想使用memcmp比較字符串,要保證count不能超過最短字符串的長度,不然結果有多是錯誤的。

二、strncmp("abcd",   "abcdef",   6)   =   0。比較次數是同樣的:      memcmp:在比較到第5個字符也就是'\0',*su1   -   *su2的結果顯然不等於0,因此知足條件跳出循環,不會再進行後面的比較。我想在其餘狀況下也同樣。      strncmp:一樣的道理再比較到第5個字符時結束循環,其實strncmp中「!*cs++」徹底等同於「!*ct++」,其做用僅在於當兩個字符串相同的情形下,防止多餘的比較次數。

相關文章
相關標籤/搜索