九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
字符串比較函數(shù) strcmp,strncmp 源碼

#include<iostream>
using namespace std;
/***************************************************************************/
/* 字符串比較函數(shù)strcmp
原型:int strcmp(const char *string1,const char *string2);
比較規(guī)則:對(duì)兩個(gè)字符串從左到右逐個(gè)字符相比較(ASCII值比較),直到出現(xiàn)不同的字
符或遇到'\0'為止;如全部字符相同,則認(rèn)為相等;若出現(xiàn)不相同的字符,則以第一個(gè)
不相同的字符的比較結(jié)果為準(zhǔn)                                                  */

源碼:

int strcmp(const char * cs,const char * ct)
{
register signed char __res;

while (1) {
   if ((__res = *cs - *ct++) != 0 || !*cs++)
    break;
}

return __res;
}


/****************************************************************************/
int StrCmp(const char *string1,const char *string2)
{
 int result;
 while(*string1!='\0'&&*string2!='\0')
 {
  if(*string1==*string2)
  {
   string1++;
   string2++;    
  }
  
   else break;
 }
 result=string1-string2; 
 if(result>0)
  return 1;
 else if(result<0)
  return -1;
 else return 0; 
 
}
/************************************************************************/
/* 字符串比較函數(shù)strncmp;
原型:int strncmp(const char *string1,const char *string2,size_t count);
比較兩字符串前count個(gè)字符*/

源碼:

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;
}



/************************************************************************/
int StrnCmp(const char *string1,const char *string2,size_t count)
{
 int result,k=1;
 while(*string1!='\0'&&*string2!='\0'&&k<=count)
 {
  if(*string1==*string2)
  {
   string1++;
   string2++;   
   k++;
  } 
  else break;
  
 }
 result=*string1-*string2;
 return result;
}
int main()
{
 char *str1="computer";
 char *str2="comparer";
 cout<<"使用StrCmp函數(shù):"<<endl;   
 cout<<StrCmp(str1,str2)<<endl;
 cout<<strcmp(str1,str2)<<endl;
 
 cout<<StrnCmp(str2,str1,2)<<endl;
 cout<<strncmp(str2,str1,2)<<endl;

 
 
}

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶(hù)發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
[示例詳解]C++常用字符串處理函數(shù)及使用
strcmp 源碼
C語(yǔ)言中的匕首-C風(fēng)格字符串(續(xù))
自制string類(lèi)型
memcmp與strcmp函數(shù)
strcmp 函數(shù)的實(shí)現(xiàn)
更多類(lèi)似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服