leetcode算法题解(Java版)-3-广搜+HashMap

一、运算符——异或"^"

题目描述

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);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值