我是靠谱客的博主 称心泥猴桃,最近开发中收集的这篇文章主要介绍在一组字符中查找,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <iostream>
using namespace std;
#define SCUESS 1
#define FALSE
0
int find_char( char **strings,char value )
{
char *string;
while( (string = *strings++) != NULL )
while( *string != ''){
if( *string++ == value )
return SCUESS;
}
return FALSE;
}
main(void)
{
char *str[] = {"Beijing","Chengdu",NULL};  //字符数组的表示
	cout << find_char(str,'C') << endl;
}


 

版本二:

#include <iostream>
#include <assert.h>
using namespace std;
#define SCUESS 1
#define FALSE
0
int find_char( char **strings,char value )
{
assert( strings != NULL );
while( *strings != NULL ){
while( **strings != ''){
if( *(*strings)++
== value)
return SCUESS;
}
strings++;
}
}
main(void)
{
char *str[] = {"Beijing","Chengdu",NULL};
cout << find_char(str,'B') << endl;
}

在版本二中,不需要拷贝每一个字符串的的指针,但是,这个程序有个副作用,就是破坏了这个指针数组。

最后

以上就是称心泥猴桃为你收集整理的在一组字符中查找的全部内容,希望文章能够帮你解决在一组字符中查找所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部