博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
山东省第四届蓝桥杯 ///题目标题:前缀判断//c/c++组
阅读量:5320 次
发布时间:2019-06-14

本文共 978 字,大约阅读时间需要 3 分钟。

题目标题:前缀判断
    如下的代码判断 needle_start指向的串是否为haystack_start指向的串的前缀,如不是,则返回NULL。
    比如:"abcd1234" 就包含了 "abc" 为前缀
char* prefix(char* haystack_start, char* needle_start)
{
char* haystack = haystack_start;
char* needle = needle_start;
while(*haystack && *needle){
if(_____________________) return NULL;  //填空位置
}
if(*needle) return NULL;
return haystack_start;
}
请分析代码逻辑,并推测划线处的代码,通过网页提交。

注意:仅把缺少的代码作为答案,千万不要填写多余的代码、符号或说明文字!!

————————————————————————————————

这个题就用地址移动然后引用相比较就好了。。。。。

上代码

#include
char* prefix(char* haystack_start, char* needle_start);int main(){ char a[]="abcd1234"; char b[]="abc"; printf("%s",prefix(a,b)); return 0;}char* prefix(char* haystack_start, char* needle_start){ char* haystack = haystack_start; char* needle = needle_start; while(*haystack && *needle){ if(*(haystack++)!=*(needle++)) return NULL; //填空位置 } if(*needle) return NULL; return haystack_start;}
答案就是那句:
(*(haystack++)!=*(needle++)

转载于:https://www.cnblogs.com/Double-LL/p/6658936.html

你可能感兴趣的文章
thinkphp系列:类的自动加载是如何设计的
查看>>
编写linux 命令行实用工具 shell命令
查看>>
###《More Effective C++》- 基础议题
查看>>
Silverlight自定义控件开发:温度计
查看>>
leecode刷题(30)-- 二叉树的后序遍历
查看>>
SQL Server 分区表补充说明
查看>>
codeforces D. Painting The Wall
查看>>
Springboot activemq 对象传递
查看>>
一些简单的网络流模型
查看>>
动态规划经典问题
查看>>
Eclipse with C++: "Launch failed. Binary not found."
查看>>
drupal中使用drush命令,快速批量的开启和关闭模块
查看>>
[转]理解Go语言中的nil
查看>>
正睿提高组2017模拟题二T2
查看>>
DataPipeline联合Confluent Kafka Meetup上海站
查看>>
JS apply的巧妙用法以及扩展到Object.defineProperty的使用
查看>>
sha1加密java代码
查看>>
hibernate 多对多双向关联
查看>>
Mysql自带的年月日函数
查看>>
源码实现 --> strcmp
查看>>