2020年4月25日 星期六

[LeetCode] 387. First Unique Character in a String 解題思路 (Easy)



這題需要判斷判斷第一個沒有重複的文字是在哪個位置。




LeetCode 題目連結

 

https://leetcode.com/problems/first-unique-character-in-a-string/

 

題目

Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1.
Examples:
s = "leetcode"
return 0.

s = "loveleetcode",
return 2.

Accept 作法


這題利用 HashMap 去紀錄出現次數,時間空間複雜度皆為O(n)。


Runtime: 202 ms
Memory: 114.8 MB

Java 程式碼

  1. class Solution {
  2. public int firstUniqChar(String s) {
  3. HashMap map = new HashMap();
  4. for(int i = 0;i<s.length();i++){
  5. if(map.containsKey(String.valueOf(s.charAt(i)))){
  6. int count =(int) map.get(String.valueOf(s.charAt(i)));
  7. count+=1;
  8. map.put(String.valueOf(s.charAt(i)),count);
  9. }else{
  10. map.put(String.valueOf(s.charAt(i)),0);
  11. }
  12. }
  13. for(int i = 0;i<s.length();i++){
  14. if(map.containsKey(String.valueOf(s.charAt(i)))){
  15. int count =(int) map.get(String.valueOf(s.charAt(i)));
  16. if(count == 0){
  17. return i;
  18. }
  19. }
  20. }
  21. return -1;
  22. }
  23. }

 

更多 LeetCode 相關資源

 

複習程式面試書籍


除了 LeetCode 練習外,我也入手了這本,題庫來自真正的面試,並非摘自教科書。它們反映出頂尖公司真正會出的題目,你可以藉此做好充分準備
需要的話可以看看,寫得很仔細。

書名:提升程式設計師的面試力:189道面試題目與解答



相關 LeetCode文章一律會放在 程式解題 標籤分類,歡迎持續追蹤。

沒有留言:

張貼留言