您好,欢迎访问三七文档
华为面试题:怎么判断链表中是否有环?boolCircleInList(Link*pHead){if(pHead==NULL||pHead-next==NULL)//无节点或只有一个节点并且无自环return(false);if(pHead-next==pHead)//自环return(true);Link*pTemp1=pHead;//step1Link*pTemp=pHead-next;//step2while(pTemp!=pTemp1&&pTemp!=NULL&&pTemp-next!=NULL){pTemp1=pTemp1-next;pTemp=pTemp-next-next;}if(pTemp==pTemp1)return(true);return(false);}两个字符串,s,t;把t字符串插入到s字符串中,s字符串有足够的空间存放t字符串voidinsert(char*s,char*t,inti){memcpy(&s[strlen(t)+i],&s[i],strlen(s)-i);memcpy(&s[i],t,strlen(t));s[strlen(s)+strlen(t)]='\0';}1。编写一个C函数,该函数在一个字符串中找到可能的最长的子字符串,且该字符串是由同一字符组成的。char*search(char*cpSource,charch){char*cpTemp=NULL,*cpDest=NULL;intiTemp,iCount=0;while(*cpSource){if(*cpSource==ch){iTemp=0;cpTemp=cpSource;while(*cpSource==ch)++iTemp,++cpSource;if(iTempiCount)iCount=iTemp,cpDest=cpTemp;if(!*cpSource)break;}++cpSource;}returncpDest;}2。请编写一个C函数,该函数在给定的内存区域搜索给定的字符,并返回该字符所在位置索引值。intsearch(char*cpSource,intn,charch){inti;for(i=0;ireturni;}一个单向链表,不知道头节点,一个指针指向其中的一个节点,问如何删除这个指针指向的节点?将这个指针指向的next节点值copy到本节点,将next指向next-next,并随后删除原next指向的节点。#includevoidfoo(intm,intn){printf(m=%d,n=%d\n,m,n);}intmain(){intb=3;foo(b+=3,++b);printf(b=%d\n,b);return0;}输出:m=7,n=4,b=7(VC6.0)这种方式和编译器中得函数调用关系相关即先后入栈顺序。不过不同编译器得处理不同。也是因为C标准中对这种方式说明为未定义,所以各个编译器厂商都有自己得理解,所以最后产生得结果完全不同。因为这样,所以遇见这种函数,我们首先要考虑我们得编译器会如何处理这样得函数,其次看函数得调用方式,不同得调用方式,可能产生不同得结果。最后是看编译器优化。2.写一函数,实现删除字符串str1中含有的字符串str2.第二个就是利用一个KMP匹配算法找到str2然后删除(用链表实现的话,便捷于数组)//Author:azhen#include#include#includechar*commanstring(charshortstring[],charlongstring[]){inti,j;char*substring=malloc(256);if(strstr(longstring,shortstring)!=NULL)//如果……,那么返回shortstringreturnshortstring;for(i=strlen(shortstring)-1;i0;i--)//否则,开始循环计算{for(j=0;j=strlen(shortstring)-i;j++){memcpy(substring,&shortstring[j],i);substring[i]='\0';if(strstr(longstring,substring)!=NULL)returnsubstring;}}returnNULL;}main(){char*str1=malloc(256);char*str2=malloc(256);char*comman=NULL;gets(str1);gets(str2);if(strlen(str1)strlen(str2))//将短的字符串放前面comman=commanstring(str2,str1);elsecomman=commanstring(str1,str2);printf(thelongestcommanstringis:%s\n,comman);}11.写一个函数比较两个字符串str1和str2的大小,若相等返回0,若str1大于str2返回1,若str1小于str2返回-1intstrcmp(constchar*src,constchar*dst){intret=0;while(!(ret=*(unsignedchar*)src-*(unsignedchar*)dst)&&*dst){++src;++dst;}if(ret0)ret=-1;elseif(ret0)ret=1;return(ret);}3,求1000!的未尾有几个0(用素数相乘的方法来做,如72=2*2*2*3*3);求出1-1000里,能被5整除的数的个数n1,能被25整除的数的个数n2,能被125整除的数的个数n3,能被625整除的数的个数n4.1000!末尾的零的个数=n1+n2+n3+n4;#include#defineNUM1000intfind5(intnum){intret=0;while(num%5==0){num/=5;ret++;}returnret;}intmain(){intresult=0;inti;for(i=5;i=NUM;i+=5){result+=find5(i);}printf(thetotalzeronumberis%d\n,result);return0;}1.有双向循环链表结点定义为:structnode{intdata;structnode*front,*next;};有两个双向循环链表A,B,知道其头指针为:pHeadA,pHeadB,请写一函数将两链表中data值相同的结点删除BOOLDeteleNode(Node*pHeader,DataTypeValue){if(pHeader==NULL)return;BOOLbRet=FALSE;Node*pNode=pHead;while(pNode!=NULL){if(pNode-data==Value){if(pNode-front==NULL){pHeader=pNode-next;pHeader-front=NULL;}else{if(pNode-next!=NULL){pNode-next-front=pNode-front;}pNode-front-next=pNode-next;}Node*pNextNode=pNode-next;deletepNode;pNode=pNextNode;bRet=TRUE;//不要break或return,删除所有}else{pNode=pNode-next;}}returnbRet;}voidDE(Node*pHeadA,Node*pHeadB){if(pHeadA==NULL||pHeadB==NULL){return;}Node*pNode=pHeadA;while(pNode!=NULL){if(DeteleNode(pHeadB,pNode-data)){if(pNode-front==NULL){pHeadA=pNode-next;pHeadA-front=NULL;}else{pNode-front-next=pNode-next;if(pNode-next!=NULL){pNode-next-front=pNode-front;}}Node*pNextNode=pNode-next;deletepNode;pNode=pNextNode;}else{pNode=pNode-next;}}}2.编程实现:找出两个字符串中最大公共子字符串,如abccade,dgcadde的最大子串为cadintGetCommon(char*s1,char*s2,char**r1,char**r2){intlen1=strlen(s1);intlen2=strlen(s2);intmaxlen=0;for(inti=0;ilen1;i++){for(intj=0;jlen2;j++){if(s1[i]==s2[j]){intas=i,bs=j,count=1;while(as+1len1&&bs+1len2&&s1[++as]==s2[++bs])count++;if(countmaxlen){maxlen=count;*r1=s1+i;*r2=s2+j;}}}}3.编程实现:把十进制数(long型)分别以二进制和十六进制形式输出,不能使用printf系列库函数char*test3(longnum){char*buffer=(char*)malloc(11);buffer[0]='0';buffer[1]='x';buffer[10]='\0';char*temp=buffer+2;for(inti=0;i8;i++){temp[i]=(char)(num4*i28);temp[i]=temp[i]=0?temp[i]:temp[i]+16;temp[i]=temp[i]10?temp[i]+48:temp[i]+55;}returnbuffer;}输入N,打印N*N矩阵比如N=3,打印:123894765N=4,打印:12341213145111615610987解答:1#defineN15ints[N][N];voidmain(){intk=0,i=0,j=0;inta=1;for(;k(N+1)/2;k++){while(jN-k)s[i][j++]=a++;i++;j--;while(iN-k)s[i++][j]=a++;i--;j--;while(jk-1)s[i][j--]=a++;i--;j++;while(ik)s[i--][j]=a++;i++;j++;}for(i=0;iN;i++){for(j=0;jN;j++)couts[i][j]'\t';coutendl;}}2defineMAX_N100intmatrix[MAX_N][MAX_N];voidSetMatrix(intx,inty,intstart,intn){inti,j;if(n=0)//递归结束条件return;if(n==1){//矩阵大小为1时matrix[x][y]=start;return;}for(i=x;ix+n-1;i++)//矩阵上部matrix[y][i]=start++;for(j=y;jy+n-1;j++)//右部matrix[j][x+n-1]=start++;for(i=x+n-1;ix;i--)//底部matrix[y+n-1][i]=start++;for(j=y+n-1;jy;j--)//左部matrix[j][x]=start++;SetMatrix(x+1,y+1,start,n-2);//递归}voidmain(){inti,j;intn;scanf(%d,&n);SetMatrix(0,0,1,n);//打印螺旋矩阵for(i=0;in;i++){for(j=0;
本文标题:华为C语言面试题1
链接地址:https://www.777doc.com/doc-5043068 .html