博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CC150-Array and string 1.1
阅读量:5314 次
发布时间:2019-06-14

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

Promble:

Implement an algorithm to determine if a string has all unique characters. What if you cannot use addtional data structure?

My solution:

1.ckeck wether the length of str is really equal to 0 or more than 256, if yes, it will return false

2. ASCII have 256 character

3 . use ToArray function chage string as char array

4. sort char array

5. compare between two character, get duplicate or not

code: 

public static boolean different(String str){

if(str.length()==0||str==null||str.length()>256) return false;
char[] strlist = str.toCharArray();
Arrays.sort(strlist);
for(int i= 1; i<strlist.length; i++){
if(strlist[i]==strlist[i-1])
return true;
}
return false;
}

 

The given solution:

1. build a boolean Array and record the character appear on the string according the ASCII value 

2. if corresponding ASCII value is exist, then return false.

code:

public static boolean isUniqueChars2(String str){

if(str.length()==0||str.length()>256) return false;

boolean[] char_set = new boolean[256];

for(int i =0 ; i < str.length();i++){

int value = str.charAt(i)

if(char_set[value]){

return false;

}

char_set[value]=true;

}

return true;

}

转载于:https://www.cnblogs.com/whaochen/p/4731588.html

你可能感兴趣的文章
pandas 修改指定列中所有内容
查看>>
「 Luogu P2285 」打鼹鼠
查看>>
lua语言入门之Sublime Text设置lua的Build System
查看>>
vue.js基础
查看>>
电脑的自带图标的显示
查看>>
[转载] redis 的两种持久化方式及原理
查看>>
C++ 删除字符串的两种实现方式
查看>>
ORA-01502: 索引'P_ABCD.PK_WEB_BASE'或这类索引的分区处于不可用状态
查看>>
Java抽象类和接口的比较
查看>>
开发进度一
查看>>
MyBaits学习
查看>>
管道,数据共享,进程池
查看>>
CSS
查看>>
[LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
查看>>
[Cypress] Stub a Post Request for Successful Form Submission with Cypress
查看>>
程序集的混淆及签名
查看>>
判断9X9数组是否是数独的java代码
查看>>
00-自测1. 打印沙漏
查看>>
UNITY在VS中调试
查看>>
SDUTOJ3754_黑白棋(纯模拟)
查看>>