leetcode演算法題解(Java版)-3-廣搜+HashMap

kissjz發表於2018-04-29

一、運算子——異或”^”

題目描述

Given an array of integers, every element appears twice except for one. Find that single one.

Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?

思路

  • 題目很簡單,考到了一個知識點——異或:比較兩個運算元的二進位制的各個位置,相同則為0不同則為1。所以,1.與0異或是本身2.與和自己一樣的異或是0.

程式碼

public class Solution {
    public int singleNumber(int[] A) {
        int res=0;
        for(int i=0;i<A.length;i++){
            res^=A[i];
        }
        return res;
    }
}

二、動態規劃

題目描述

There are N children standing in a line. Each child is assigned a rating value.
You are giving candies to these children subjected to the following requirements:
Each child must have at least one candy.
Children with a higher rating get more candies than their neighbors.
What is the minimum candies you must give?

思路

  • 一開始看錯題了,孩子們本來站好隊了,我按權重從大到小排了一下。。。看了別人的程式碼,思路並不難:先給每人一個糖果,兩個迴圈解決問題,一,從前往後掃一遍,如果下一個比上一個權重大就在上一個基礎上加一;再從後往前掃一遍,如果前面的比後面的權重大且糖果比他少就再後面的基礎上加一重新整理原有的值。
  • 語法點:Arrays.fill(array,val);Arrays.sort(array);

程式碼

import java.util.Arrays;

public class Solution {
    public int candy(int[] ratings) {
        if(ratings==null||ratings.length==0){
            return 0;
        }
        int len=ratings.length;
        int [] cnt=new int [len];
        Arrays.fill(cnt,1);
        for(int i=1;i<len;i++){
            if(ratings[i]>ratings[i-1]){
                cnt[i]=cnt[i-1]+1;
            }
        }
        int sum=0;
        for(int i=len-1;i>0;i--){
            if(ratings[i-1]>ratings[i]&&cnt[i-1]<=cnt[i]){
                cnt[i-1]=cnt[i]+1;
            }
            sum+=cnt[i];
        }
        return sum+cnt[0];
    }
}

三、模擬題(環狀)

題目描述

There are N gas stations along a circular route, where the amount of gas at station i isgas[i].
You have a car with an unlimited gas tank and it costscost[i]of gas to travel from station i to its next station (i+1). You begin the journey with an empty tank at one of the gas stations.
Return the starting gas station`s index if you can travel around the circuit once, otherwise return -1.
Note:
The solution is guaranteed to be unique.

思路

  • 設定start和end,分別放在首尾。如果能繼續走就讓end++,不能則讓start退一個。結束while迴圈有兩種可能結果,一個是sum>=0,則最後相會的點就是出發點,另一個則不可能。

程式碼

public class Solution {
    public int canCompleteCircuit(int[] gas, int[] cost) {
        int len=gas.length;
        int start=len-1;
        int end=0;
        int sum=0;
        sum=gas[start]-cost[start];
        
        while(end<start){
            if(sum>=0){
                sum+=gas[end]-cost[end];
                end++;
            }
            else{
                start--;
                sum+=gas[start]-cost[start];
            }
        }
        return sum>=0?start:-1;
    }
}

四、BFS+HashMap

題目描述

Clone an undirected graph. Each node in the graph contains alabeland a list of itsneighbors.

思路

  • 廣搜,然後用map儲存原來的和克隆的一一對映
  • HashMap中通過get()來獲取value,通過put()來插入value,containsKey()則用來檢驗物件是否已經存在
  • Stack:st.push(node);st.pop();st.empty();

程式碼

/**
 * Definition for undirected graph.
 * class UndirectedGraphNode {
 *     int label;
 *     ArrayList<UndirectedGraphNode> neighbors;
 *     UndirectedGraphNode(int x) { label = x; neighbors = new ArrayList<UndirectedGraphNode>(); }
 * };
 */

import java.util.Stack;
import java.util.HashMap;

public class Solution {
    public UndirectedGraphNode cloneGraph(UndirectedGraphNode node) {
        if(node==null){
            return null;
        }
        HashMap<UndirectedGraphNode,UndirectedGraphNode> map=new HashMap<>();
        Stack<UndirectedGraphNode> stackNode=new Stack<>();
        stackNode.push(node);
        while(!stackNode.empty()){
            UndirectedGraphNode tempNode=stackNode.pop();
            
            if(map.containsKey(tempNode)){
                continue;
            }
            UndirectedGraphNode copyNode=new UndirectedGraphNode(tempNode.label);
            
            for(UndirectedGraphNode uNode:tempNode.neighbors){
                copyNode.neighbors.add(uNode);
                if(map.containsKey(uNode)){
                    continue;
                }
                stackNode.push(uNode);
            }
            map.put(tempNode,copyNode);
        }
        return map.get(node);
    }
}


相關文章