当前位置:网站首页>2.<tag-哈希表, 字符串>补充: 剑指 Offer 50. 第一个只出现一次的字符 dbc
2.<tag-哈希表, 字符串>补充: 剑指 Offer 50. 第一个只出现一次的字符 dbc
2022-07-05 20:40:00 【菜菜的大数据开发之路】
剑指 Offer 50. 第一个只出现一次的字符
[案例需求]

[思路分析一, 两次遍历]

[代码实现]
class Solution {
public char firstUniqChar(String s) {
Map<Character, Integer> frequency = new HashMap<Character, Integer>();
for (int i = 0; i < s.length(); ++i) {
char ch = s.charAt(i);
frequency.put(ch, frequency.getOrDefault(ch, 0) + 1);
}
for (int i = 0; i < s.length(); ++i) {
if (frequency.get(s.charAt(i)) == 1) {
return s.charAt(i);
}
}
return ' ';
}
}

[思路分析二, 利用API]
class Solution {
public char firstUniqChar(String s) {
for(int i = 0; i< s.length(); i++){
char value = s.charAt(i);
if(s.indexOf(value)==s.lastIndexOf(value)){
return value;
}
}
return ' ';
}
}
边栏推荐
- Dry goods navigation in this quarter | Q2 2022
- 台风来袭!建筑工地该如何防范台风!
- Hongmeng OS' fourth learning
- Applet project structure
- Pytorch 1.12 was released, officially supporting Apple M1 chip GPU acceleration and repairing many bugs
- Duchefa丨P1001植物琼脂中英文说明书
- The Chinese Academy of Management Sciences gathered industry experts, and Fu Qiang won the title of "top ten youth" of think tank experts
- Where is a good stock account? Is online account manager safe to open an account
- Rainbow 5.7.1 supports docking with multiple public clouds and clusters for abnormal alarms
- Mongodb basic exercises
猜你喜欢

Wanglaoji pharmaceutical's public welfare activity of "caring for the most lovely people under the scorching sun" was launched in Nanjing

小程序页面导航
![Informatics Orsay all in one 1339: [example 3-4] find the post order traversal | Valley p1827 [usaco3.4] American Heritage](/img/f0/0f985425bd61d9852af0b5fd7307ee.png)
Informatics Orsay all in one 1339: [example 3-4] find the post order traversal | Valley p1827 [usaco3.4] American Heritage

Abnova丨E (DIII) (WNV) 重组蛋白 中英文说明书

PHP反序列化+MD5碰撞

Applet global configuration

14、Transformer--VIT TNT BETR

Duchefa p1001 plant agar Chinese and English instructions

【刷题记录】1. 两数之和

欢迎来战,赢取丰厚奖金:Code Golf 代码高尔夫挑战赛正式启动
随机推荐
CCPC 2021 Weihai - G. shinyruo and KFC (combination number, tips)
全国爱眼教育大会,2022第四届北京国际青少年眼健康产业展会
线程池的使用
小程序页面导航
Abbkine BCA法 蛋白质定量试剂盒说明书
Rainbow 5.7.1 supports docking with multiple public clouds and clusters for abnormal alarms
Duchefa丨MS培养基含维生素说明书
Sort and projection
Monorepo管理方法论和依赖安全
MySQL fully parses json/ arrays
Duchefa细胞分裂素丨二氢玉米素 (DHZ)说明书
Abnova丨 CD81单克隆抗体相关参数和应用
matplotlib绘图润色(如何形成高质量的图,例如设如何置字体等)
3.3 project evaluation
How to renew NPDP? Here comes the operation guide!
Dry goods navigation in this quarter | Q2 2022
小程序事件绑定
Abnova total RNA Purification Kit for cultured cells Chinese and English instructions
Minimum commission for stock trading account opening, where to open an account with low commission? Is it safe to open an account on your mobile phone
常用的视图容器类组件