码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode3

时间:2017-11-19 13:32:41      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:就是   次数   遍历   ima   images   add   temp   时间   sem   

Arrays.sort() & Collections.sort()

Collections 是集合的工具类,Collections.sort用于对象集合按照用户自定义的规则进行排序(常用于对list进行排序)

Arrays.sort 可以用于对象数组按照用户自定义规则排序。

eg: 本题中将字符串转成数组,然后使用Arrays.sort()

Char[] chars = s.toCharArray();

Arrays.sort(chars);

//String string = String.valueOf(chars); 转回string

comparator & comparable

Comparable: 接口位于java.lang中,通过实现compareTo()方法实现自定义排序。

compareTo() 定义在对象内部,直接调用Collections.sort(list);即可

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

//定义一个Student类,实现Comparable接口,泛型设为Student
class Student implements Comparable<Student>{    
    public  int id ;
    public String name;


    public Student(int id, String name) {
        super();
        this.id = id;
        this.name = name;
    }

    //重写接口中的comparaTo()方法
    @Override

    public int compareTo(Student o) {
        //我在此定义的conparaTo()方法是以两者的id为标准进行比较,也可以对他们的其他属性进行比较
        //通过改变返回值的方式(如取反等),可以自行决定排序的顺序
        return (o.id-this.id);
    }

}

//测试的主类
public class CompareTest {

    public static void main(String[] args) {

        Student s1 = new Student(1,"小");
        Student s2 = new Student(2,"大");
        List<Student> list = new ArrayList<>();
        list.add(s1);
        list.add(s2);
        System.out.println("Comparable:");
        System.out.println(list.get(0).id +list.get(0).name);
        System.out.println(list.get(1).id +list.get(1).name);
        //由于Student类实现了Comparable接口,所以集合list可以直接排序
        Collections.sort(list); 
        System.out.println("=============交换后=============");
        System.out.println(list.get(0).id +list.get(0).name);
        System.out.println(list.get(1).id +list.get(1).name);

    }

}

 

Comparator: 接口位于java.util中,通过实现其中compare()方法实现自定义排序。

compare定义在另一个实现Comparator的类中,通过调用Collections.sort(list, classname);调用

import java.util.Comparator;  //需要导包
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

//一个没有定义比较方式的普通类
class Student{    
    public  int id ;
    public String name;

    public Student(int id, String name) {
        super();
        this.id = id;
        this.name = name;
    }
}

//一个实现了Comparator接口的类,泛型设为我们需要进行比较排序的Student类
class Compare implements Comparator<Student>{

    //重写compare()方法,参数为两个Student类型的对象
    @Override
    public int compare(Object o1, Object o2) {    

        //同样的,根据改变返回值的方式,我们可以自行决定排序的顺序    
        return (Student)o2.id-(Student)o1.id;

    }
}

//用于测试的主类
public class CompareTest {

    public static void main(String[] args) {

        Student s1 = new Student(1,"小");
        Student s2 = new Student(2,"大");
        List<Student> list = new ArrayList<>();
        list.add(s1);
        list.add(s2);
        System.out.println("Comparator:");
        System.out.println(list.get(0).id +list.get(0).name);
        System.out.println(list.get(1).id +list.get(1).name);

        //实现了Comparator接口的Compare类的一个实例对象就可以作为参数传到Collections.sort()方法中
        //本没有定义比较方法的Student类的对象就可以排序了
        Collections.sort(list,new Compare());
        System.out.println("=============交换后=============");
        System.out.println(list.get(0).id +list.get(0).name);
        System.out.println(list.get(1).id +list.get(1).name);
    }
}

 

  • 总结:
  1. Comparable是直接在"被比较"的类内部来实现的,实现了这个接口,重写它的compareTo()方法,这个类就有了一种"可比较"的"天赋属性",把存着这个类对象的集合丢到sort()方法中去时,sort()方法就知道怎么对这些对象进行比较和排序。
    Comparator则是在被比较的类外部实现的,在这个类内部你可以重写compare()方法来对指定类型的对象进行人为规定的比较方式。当把存着那个指定类对象的集合丢到sort()方法中时,sort()一脸茫然,因为这个类的对象根本不具有"可比较"性,所以我们还需要把实现Comparator接口的类的实例对象也一起传进去,手把手教sort()方法怎样对那个类型的对象进行比较、排序。
  2. 如果想由大到小排列则,(Object obj1,Object obj2)return obj2.value-obj1.value;

Map.Entry使用

  • Map.Entry是Map声明的一个内部接口,此接口为泛型,定义为Entry<K, V>,它表示Map中的一个实体(即一个keyValue对)
Set keys = map.keySet();
if(keys != null){
    Iterator iterator = keys.iterator();
    while(iterator.hasNext()){
        Object key = iterator.next();
        Object value = map.get(key);
    }
}
//每次从map中取得key之后,要返回map中相关的value,比较繁琐
Set entries = map.entrySet();
if(entries != null){
    Iterator iterator = entries.iterator();
    while(iterator.hasNest()){
        Map.Entry entry = iterator.next();
        Object key = entry.getKey();
        Object value = entry.getValue();//entry.setValue();
    }
}
//可以节省队get的调用

 Set: HashSet, TreeSet, LinkedHashSet

  • Set接口

技术分享图片

  •  TimeComplexity

HashSet: add、remove 及contains 方法的时间复杂度是一个常量 O(1)。

TreeSet: 是使用一个红黑树来实现的。元素在set中被排好序,但是add、remove及contains方法的时间复杂度为O(log(n))。它提供了几个方法用来处理有序的set,比如first(),last(),headSet(),tailSet()等等。

LinkedHashSet: HashSet与TreeSet之间。它由一个执行hash表的链表实现,因此,它提供顺序插入。基本方法的时间复杂度为O(1)。

速度: HashSet > LinkedHashSet > TreeSet

  • TreeSet例子
TreeSet<Integer> tree = new TreeSet<Integer>();  
tree.add(12);  
tree.add(63);  
tree.add(34);  
tree.add(45);  
   
Iterator<Integer> iterator = tree.iterator();  
System.out.print("Tree set data: ");  
while (iterator.hasNext()) {  
    System.out.print(iterator.next() + " ");  
}  

结果: Tree set data:
12 34 45 63

 Dog类:因为TreeSet是有序的,Dog对象需要实现java.lang.Comparable的compareTo()方法(应该是先实现Comparable再重写compareTo()方法),就像下面这样:

[java] view plain copy
class Dog implements Comparable<Dog>{  
    int size;  
   
    public Dog(int s) {  
        size = s;  
    }  
   
    public String toString() {  
        return size + "";  
    }  
   
    @Override  
    public int compareTo(Dog o) {  
            return size - o.size;  
    }  
} 
import java.util.Iterator;  
import java.util.TreeSet;  
   
public class TestTreeSet {  
    public static void main(String[] args) {  
        TreeSet<Dog> dset = new TreeSet<Dog>();  
        dset.add(new Dog(2));  
        dset.add(new Dog(1));  
        dset.add(new Dog(3));  
   
        Iterator<Dog> iterator = dset.iterator();  
   
        while (iterator.hasNext()) {  
            System.out.print(iterator.next() + " ");  
        }  
    }  
}  

结果:
1 2 3 
  • LinkedHashSet
LinkedHashSet<Dog> dset = new LinkedHashSet<Dog>();  
dset.add(new Dog(2));  
dset.add(new Dog(1));  
dset.add(new Dog(3));  
dset.add(new Dog(5));  
dset.add(new Dog(4));  
Iterator<Dog> iterator = dset.iterator();  
while (iterator.hasNext()) {  
    System.out.print(iterator.next() + " ");  
}

结果:
2 1 3 5 4  

 

 

HashMap

49. Group Anagrams

class Solution {
    public List<List<String>> groupAnagrams(String[] strs) {
        List<List<String>> ans = new ArrayList<List<String>>();
        if(strs.length == 0) return ans;
        HashMap<String, List<String>> map = new HashMap<>();
        for(String s:strs){
            char[] chars = s.toCharArray();
            Arrays.sort(chars);
            String key = String.valueOf(chars);
            map.putIfAbsent(key, new ArrayList());
            map.get(key).add(s);
        }
        for(String key:map.keySet()){
            Collections.sort(map.get(key));
            ans.add(map.get(key));
        }
        return ans;
    }
}
  • 需要学习的点: 
  1. 将字符串转换为char数组可以用Arrays.sort()来进行排序
  2. String.valueOf(charArray)可以将charArray转换为字符串
  3. map.putIfAbsent(key, value);
  4. Collections.sort()一般可以用于sort list,如果list内容为String, Integer... comparator已经写好了
  5. LinkedHashMap可以以key插入的顺序遍历

36. Valid Sudoku

class Solution {
    public boolean isValidSudoku(char[][] board) {
        
        for(int i = 0; i < board.length; i++){
            //row
            if(isValid(board, i, 0, i, 8) == false) return false;
            //col
            if(isValid(board, 0, i, 8, i) == false) return false;
            //cube
            if(isValid(board, (i/3)*3, (i%3)*3, (i/3)*3+2, (i%3)*3+2) == false) return false;
        }
        return true;
    }
    
    boolean isValid(char[][] board, int row1, int col1, int row2, int col2){
        HashSet<Character> set = new HashSet<Character>();
        for(int i = row1; i <= row2; i++){
            for(int j = col1; j <= col2; j++){
                if(board[i][j]!=‘.‘ && set.add(board[i][j]) == false) return false;
            }
        }
        return true;
    }
}

 

基本思路: 要对行列还有矩阵分别进行判别。

对于每一行每一列每一个矩阵分别使用一个HashSet。 注意: set.add()返回boolean,如果set中已经含有了这个值就回返回false。

最重要的是对矩阵的转换。

347. Top K Frequent Elements

  • 方法一 : bucketsort
  • 需要学习的地方:
  1. map.put(key, map.getOrDefault(key, 0)+1)
  2. 可以创建List数组,并由后向前遍历,由后向前可以保证从大到小
  3. k>0 限制正forloop里的操作,所以可以直接addAll
// use an array to save numbers into different bucket whose index is the frequency
public class Solution {
    public List<Integer> topKFrequent(int[] nums, int k) {
        Map<Integer, Integer> map = new HashMap<>();
        for(int n: nums){
            map.put(n, map.getOrDefault(n,0)+1);
        }
        
        // corner case: if there is only one number in nums, we need the bucket has index 1.
        List<Integer>[] bucket = new List[nums.length+1];
        for(int n:map.keySet()){
            int freq = map.get(n);
            if(bucket[freq]==null)
                bucket[freq] = new LinkedList<>();
            bucket[freq].add(n);
        }
        
        List<Integer> res = new LinkedList<>();
        for(int i=bucket.length-1; i>0 && k>0; --i){
            if(bucket[i]!=null){
                List<Integer> list = bucket[i]; 
                res.addAll(list);
                k-= list.size();
            }
        }
        
        return res;
    }
}
  •  方法二: maxHeap
  • 需要学习的地方:
  1. 在maxHeap即descending PriorityQueue中存储的是Map.Entry. 设置方法: PriorityQueue<Map.Entry<>> maxHeap = new PriorityQueue<>((a,b)->(b.getValue()-a.getValue()));  即这个maxHeap会按照entry的value值,从小到大进行排列。
  2. for(Map.Entry<> entry: map.entrySet()) 来遍历map中的所有entry
  3. 通过maxHeap中存的entry,再调用getKey()来获得keyValue
public class Solution {
    public List<Integer> topKFrequent(int[] nums, int k) {
        Map<Integer, Integer> map = new HashMap<>();
        for(int n: nums){
            map.put(n, map.getOrDefault(n,0)+1);
        }
           
        PriorityQueue<Map.Entry<Integer, Integer>> maxHeap = 
                         new PriorityQueue<>((a,b)->(b.getValue()-a.getValue()));
        for(Map.Entry<Integer,Integer> entry: map.entrySet()){
            maxHeap.add(entry);
        }
        
        List<Integer> res = new ArrayList<>();
        while(res.size()<k){
            Map.Entry<Integer, Integer> entry = maxHeap.poll();
            res.add(entry.getKey());
        }
        return res;
    }
}
  • 方法三:treeMap
  • 需要学习的地方:
  1. 这里没有重写treeMap的compare方法,直接调用treeMap.pollLatsEntry().which Removes and returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
  2. 再对这个entry调用getValue()
  3. while(res.size() < k)可以保证真个while loop中的情况,可以直接res.addAll
// use treeMap. Use freqncy as the key so we can get all freqencies in order
public class Solution {
    public List<Integer> topKFrequent(int[] nums, int k) {
        Map<Integer, Integer> map = new HashMap<>();
        for(int n: nums){
            map.put(n, map.getOrDefault(n,0)+1);
        }
        
        TreeMap<Integer, List<Integer>> freqMap = new TreeMap<>();
        for(int num : map.keySet()){
           int freq = map.get(num);
           if(!freqMap.containsKey(freq)){
               freqMap.put(freq, new LinkedList<>());
           }
           freqMap.get(freq).add(num);
        }
        
        List<Integer> res = new ArrayList<>();
        while(res.size()<k){
            Map.Entry<Integer, List<Integer>> entry = freqMap.pollLastEntry();
            res.addAll(entry.getValue());
        }
        return res;
    }
}
  • 我的方法:
class Solution {
    public List<Integer> topKFrequent(int[] nums, int k) {
        List<Integer> ans = new ArrayList<Integer>();
        Map<Integer, Integer> count = new TreeMap<Integer, Integer>();
        for(int i = 0; i < nums.length; i++){
            count.putIfAbsent(nums[i], 0);
            count.put(nums[i], count.get(nums[i])+1);
        }
        Map<Integer, List<Integer>> map = new TreeMap<>(new Comparator<Integer>(){
            public int compare(Integer o1, Integer o2){
                return o2 - o1;
            }
        });
        for(Integer key:count.keySet()){
            map.putIfAbsent(count.get(key), new ArrayList<Integer>());
            map.get(count.get(key)).add(key);
        }
        for(Integer key:map.keySet()){
            for(int i = 0; i < map.get(key).size(); i++){
                ans.add(map.get(key).get(i));
                k--;
                if(k == 0) return ans;
            }
        }
  • 可以直接用lambda表达式: Map<Integer, List<Integer>> map = new TreeMap<>((a,b)->b-a);

187. Repeated DNA Sequences

用一个长度为10的滑动窗口,记:不能用HashSet要用HashMap的value来记忆次数,要不然可能会返回重复的子字符串。

 299. Bulls and Cows

Have two HashMap to maintain the characters and the frequency of it. And compare each other in the hashMap.

311. SparseMatrix Multiplication 稀疏矩阵:大部分element为0

  • 方法一:关于矩阵成绩, AxB, A的列数要等于B的行数===》C[A的行数][B的列数]

技术分享图片

第一行A与第一列B乘积构成了C[0][0], 第一行A与第二列B乘积构成了C[0][1]

如果用三个嵌套的循环,i(行)j(列)k(A列/B行)会TE。由于可能会有很多0存在导致一些不必要的乘积。

把对k的循环拉到第二层,对A[i][k]和B[k][j]进行判断,如果有一个是0则不需要进行循环。例如,如果A[0][0]是0,则没必要每次都将它与B[0][0] B[0][1] B[0][2]...进行相乘

class Solution{
    public int[][] multiply(int[][] A, int[][] B){
        int[][] ans = new int[A.length][B[0].length];
        for(int i = 0; i < A.length; i++){
            for(int k = 0; k < A[0].length; k++){
                if(A[i][k] != 0){
                    for(int j = 0; j < B[0].length; j++){
                        if(B[k][j] != 0)
                             ans[i][j] = ans[i][j] + A[i][k] * B[k][j];
                    }
                }
            }
        }
        return ans; 
    }
}

 

  •  方法二:用链表表示矩阵

A sparse matrix can be represented as a sequence of rows, each of which is a sequence of (column-number, value) pairs of the nonzero values in the row.

To save space and running time it is critical to only store the nonzero elements. A standard representation of sparse matrices in sequential languages is to use an array with one element per row each of which contains a linked-list of the nonzero values in that row along with their column number.

A = 
2.0 -1.0 0 0
-1.0 2.0 -1.0 0
0 -1.0 2.0 -1.0
0 0 -1.0 2.0
A = [[(0, 2.0), (1, -1.0)],
     [(0, -1.0), (1, 2.0), (2, -1.0)],
     [(1, -1.0), (2, 2.0), (3, -1.0)],
     [(2, -1.0), (3, 2.0)]]

class Solution {
    public int[][] multiply(int[][] A, int[][] B) {
        int[][] ans = new int[A.length][B[0].length];
        List [] indexA = new List[A.length];//注意是List数组,存储的是List
        for(int i = 0; i < A.length; i++){
            List<Integer> numsA = new ArrayList<Integer>();
            for(int j = 0; j < A[0].length; j++){
                if(A[i][j] != 0){
                    numsA.add(j);
                    numsA.add(A[i][j]);//把列号和值存储起来
                }
            }
            indexA[i] = numsA;//把list放入数组中
        }
        for(int i = 0; i < indexA.length; i++){//对每一行处理
            List<Integer> numsA = indexA[i]; //拿到index[I]中List的引用
            for(int p = 0; p < numsA.size() - 1; p++){//对每一行中的非0列处理
                int colA = numsA.get(p);
                int valA = numsA.get(++p);
                for(int j = 0; j < B[0].length; j++){
                    int valB = B[colA][j];//每一行的非零列所需要进行的所有处理
                    ans[i][j] = ans[i][j] + valA*valB;
                }
            }
        }
        return ans;
    }
}

 380. Insert Delete GetRandom O(1)

一开始用了HashSet但是HashSet没法GetRandom(),本来使用了Iterator 但是Iterator是无序返回但是不是但是每一次都是重新按照固定顺序返回的。

用ArrayList来保存输入的数字,HashMap() key保持输入的数字,value保持数字在List中的index

remove的时候,map直接remove,将list中的最后一个值填写到value 的index上,然后删除list中的最后一个值。

public boolean remove(int val) {
        if(map.containsKey(val)){
            int index = map.get(val);
            if(index < list.size() - 1){
                int temp = list.get(list.size() - 1);
                list.set(index, temp); 
                map.put(temp, index);
            }
            list.remove(list.size() - 1);
            map.remove(val);
            return true;
        }else return false;
    }

 

  • 要学习的点:
  1. Iterator iter = set.iterator();

    Integer val = (Integer) iter.next();// iter.next()会返回一个object

    int value = val.intValue();//将 Integer转化成int

    int value = 0;     Integer val = new Integer(value);//将int转化成Integer

  2. 获取随机数:
  • Math.random() 随即生成0<x<1的小数。

实例:如何写,生成随机生成出0~100中的其中一个数呢?

Math.random()返回的只是从0到1之间的小数,如果要50到100,就先放大50倍,即0到50之间,这里还是小数,如果要整数,就强制转换int,然后再加上50即为50~100.
最终代码:(int)(Math.random()*50) + 50

  • Random

Random 类中的方法比较简单,每个方法的功能也很容易理解。需要说明的是,Random类中各方法生成的随机数字都是均匀分布的,也就是说区间内部的数字生成的几率是均等的。下面对这些方法做一下基本的介绍: 

a. public boolean nextBoolean() 

该方法的作用是生成一个随机的boolean值,生成true和false都是50%的几率。 

b. public double nextDouble() 

该方法的作用是生成一个随机的double值,数值介于[0,1.0)之间,这里中括号代表包含区间端点,小括号代表不包含区间端点,也就是0到1之间的随机小数,包含0而不包含1.0。 

ex: [1, 2.5)   double val = r.nextDouble() * 1.5 + 1;

r.nextDouble(n2-n1)+n1

c. public int nextInt() 

该方法的作用是生成一个随机的int值,该值介于int的区间,也就是-2的31次方到2的31次方-1之间。 

d. public int nextInt(int n) 

该方法的作用是生成一个随机的int值,该值介于[0,n)的区间,也就是0到n之间的随机int值,包含0而不包含n。 

如果想生成指定区间的int值,也需要进行一定的数学变换,具体可以参看下面的使用示例中的代码。

ex: [-3, 15)   int val = r.nextInt(18) - 3;

 

LeetCode3

标签:就是   次数   遍历   ima   images   add   temp   时间   sem   

原文地址:http://www.cnblogs.com/ninalei/p/7859467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!