您好,登錄后才能下訂單哦!
這篇文章主要為大家分析了Java數(shù)據(jù)結(jié)構(gòu)中的Map與Set該怎么理解的相關(guān)知識點(diǎn),內(nèi)容詳細(xì)易懂,操作細(xì)節(jié)合理,具有一定參考價值。如果感興趣的話,不妨跟著跟隨小編一起來看看,下面跟著小編一起深入學(xué)習(xí)“Java數(shù)據(jù)結(jié)構(gòu)中的Map與Set該怎么理解”的知識吧。
給定一個非空整數(shù)數(shù)組,除了某個元素只出現(xiàn)一次以外,其余每個元素均出現(xiàn)兩次。找出那個只出現(xiàn)了一次的元素。
輸入: [2,2,1]
輸出: 1
首相我們可能會想到用位運(yùn)算直接解決,但我們也可以用hash色條解決。
public int singleNumber(int[] nums) { int single = 0; for (int num : nums) { single ^= num; } return single; }
hashset也已輕松解決這個問題,將整個數(shù)組中的元素放入set,因?yàn)橹怀霈F(xiàn)一次的數(shù)字只有一次,所以我們將多次出現(xiàn)相同的數(shù)字移除
public int singleNumber(int[] nums){ HashSet<Integer> set = new HashSet<>(); for (int i = 0; i < nums.length; i++){ if (set.contains(nums[i])){ set.remove(nums[i]); }else { set.add(nums[i]); } } for (int i = 0; i < nums.length; i++){ if (set.contains(nums[i])){ return nums[i]; } } return -1; }
給你一個字符串 jewels 代表石頭中寶石的類型,另有一個字符串 stones 代表你擁有的石頭。 stones 中每個字符代表了一種你擁有的石頭的類型,你想知道你擁有的石頭中有多少是寶石。
字母區(qū)分大小寫,因此 "a"
和 "A"
是不同類型的石頭。
輸入:jewels = "aA", stones = "aAAbbbb"
輸出:3
這道題和第一道題一樣,這里是統(tǒng)計(jì)不同的個數(shù)。因?yàn)橐獏^(qū)分大小寫,所以我們將小寫轉(zhuǎn)大寫,不影響我們做出判斷
public int numJewelsInStons(String jewels,String stons){ stons.toUpperCase(Locale.ROOT).toCharArray(); HashSet<Character> set = new HashSet<>(); for (int i = 0; i < jewels.length(); i++){ set.add(jewels.charAt(i)); } int count = 0; for (char ch:stons.toCharArray()) { if(set.contains(ch)){ count++; } } return count; }
舊鍵盤上壞了幾個鍵,于是在敲一段文字的時候,對應(yīng)的字符就不會出現(xiàn)?,F(xiàn)在給出應(yīng)該輸入的一段文字、以及實(shí)際被輸入的文字,請你列出肯定壞掉的那些鍵。
輸入
7_This_is_a_test
_hs_s_a_es
輸出
7TI
這道題我們要分兩個set,一個setActual記錄真實(shí)打出的字母,一個setBroken統(tǒng)計(jì)壞掉的字母,判斷條件是符合的字母既不是包含setActual中已經(jīng)存在的,也不是setActual與setBroken相同的字母。主要是同時對比setActual與setBroken。
public static void main(String[] args) { Scanner scan = new Scanner(System.in); String str1 = scan.nextLine(); String str2 = scan.nextLine(); HashSet<Character> setActual = new HashSet<>(); for (char ch:str2.toUpperCase(Locale.ROOT).toCharArray()) { setActual.add(ch); } HashSet<Character> setBroken = new HashSet<>(); for (char ch: str1.toUpperCase(Locale.ROOT).toCharArray()) { if(!setActual.contains(ch) && !setBroken.contains(ch)){ setBroken.add(ch); System.out.print(ch);; } } }
給你一個長度為 n
的鏈表,每個節(jié)點(diǎn)包含一個額外增加的隨機(jī)指針 random
,該指針可以指向鏈表中的任何節(jié)點(diǎn)或空節(jié)點(diǎn)。
構(gòu)造這個鏈表的 深拷貝。 深拷貝應(yīng)該正好由 n 個 全新 節(jié)點(diǎn)組成,其中每個新節(jié)點(diǎn)的值都設(shè)為其對應(yīng)的原節(jié)點(diǎn)的值。新節(jié)點(diǎn)的 next 指針和 random 指針也都應(yīng)指向復(fù)制鏈表中的新節(jié)點(diǎn),并使原鏈表和復(fù)制鏈表中的這些指針能夠表示相同的鏈表狀態(tài)。復(fù)制鏈表中的指針都不應(yīng)指向原鏈表中的節(jié)點(diǎn)。
例如,如果原鏈表中有 X 和 Y 兩個節(jié)點(diǎn),其中 X.random --> Y 。那么在復(fù)制鏈表中對應(yīng)的兩個節(jié)點(diǎn) x 和 y ,同樣有 x.random --> y 。
輸入:head = [[7,null],[13,0],[11,4],[10,2],[1,0]]
輸出:[[7,null],[13,0],[11,4],[10,2],[1,0]]
class Node { int val; Node next; Node random; public Node(int val) { this.val = val; this.next = null; this.random = null; } } public Node copyRandomList(Node head){ if (head == null) return null; HashMap<Node,Node> map = new HashMap<>(); Node cur = head; while (cur != null){ Node node = new Node(cur.val); map.put(cur,node); cur = cur.next; } cur = head; while (cur != null){ map.get(cur).next = map.get(cur.next); map.get(cur).random = map.get(cur.random); cur = cur.next; } return map.get(head); }
關(guān)于“Java數(shù)據(jù)結(jié)構(gòu)中的Map與Set該怎么理解”就介紹到這了,更多相關(guān)內(nèi)容可以搜索億速云以前的文章,希望能夠幫助大家答疑解惑,請多多支持億速云網(wǎng)站!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。