确定一个字符串了所有独特的角色? [英] determine if a string has all unique characters?

查看:130
本文介绍了确定一个字符串了所有独特的角色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能告诉我如何执行一个程序来检查字符串中包含的所有独特的字符?

Can anybody tell me how to implement a program to check a string contains all unique chars ?

推荐答案

如果你正在谈论的ASCII字符串:

If you are talking about an ASCII string:

  1. 创建一个int数组[0-255]一 为每个字符索引, 初始化为零。

  1. Create an int array [0-255], one for each character index, initialised to zero.

遍历 串中的每个字符和 增加相应阵列位置的字符

Loop through each character in the string and increment the respective array position for that character

如果数组位置已经包含了1,则该字符已经遇到过。结果=>不是唯一的。

If the array position already contains a 1, then that character has already been encountered. Result => Not unique.

如果你到达终点 串没有发生的 (3),结果=>字符串是独一无二的。

If you reach the end of the string with no occurrence of (3), Result => the string is unique.

这篇关于确定一个字符串了所有独特的角色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆