欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

程序员面试金典面试题 01.01. 判定字符是否唯一

程序员文章站 2024-03-04 11:52:17
...

程序员面试金典面试题 01.01. 判定字符是否唯一

下面是bool数组方法

#include <iostream>
#include<string>
using namespace std;
class Solution {
public:
	bool isUnique(string astr) {
		bool charRecord[100] = { false };//全用false进行初始化
		for (int i = 0; i<int(astr.length()); i++){
			if (charRecord[astr[i] - 'a'] == true)
				return false;
			else
				charRecord[astr[i] - 'a'] = true;
		}
		return true;
	}
};
void main(){
	string a = "aa"; //C++中严格很多,双引号表示字符串、单引号表示字符
	Solution object_f;
	bool b = object_f.isUnique(a);
	cout << b << endl;
}

程序员面试金典面试题 01.01. 判定字符是否唯一
位运算的方法占用内存更少。先写主要的内容,一层层往下,不然会忘记。

相关标签: 程序员面试金典