Sunday, June 3, 2018

311, 543 Sparse Matrix Multiplication, Diameter of Binary Tree

311Sparse Matrix Multiplication
Given two sparse matrices A and B, return the result of AB.
You may assume that A's column number is equal to B's row number.
Example:
Input:

A = [
  [ 1, 0, 0],
  [-1, 0, 3]
]

B = [
  [ 7, 0, 0 ],
  [ 0, 0, 0 ],
  [ 0, 0, 1 ]
]

Output:

     |  1 0 0 |   | 7 0 0 |   |  7 0 0 |
AB = | -1 0 3 | x | 0 0 0 | = | -7 0 3 |
                  | 0 0 1 |

-----------------------
Solution #1 Brute force, 正常的矩阵乘法,每一次行列相乘会得到[i][j]位置的最终结果
复杂度:rowA * colA * colB
或者:A矩阵的元素的个数 * colB
class Solution {
    public int[][] multiply(int[][] A, int[][] B) {
        int rowA = A.length;
        int colB = B[0].length;
        int[][] rt = new int[rowA][colB];
        
        for (int row = 0; row < rowA; row++) {
            for (int col = 0; col < colB; col++) {
                int s = 0;
                for (int i = 0; i < B.length; i++) {
                    s += A[row][i] * B[i][col];
                }
                rt[row][col] = s;
            }
        }
        
        return rt;
    }
}
Solution #2 对矩阵A进行遍历,A中的每一个元素A[i][j]都会被调用到B[0].length次,并计入到结果矩阵。如果A[i][j] == 0,则可省去B[0].length次运算
此算法不同处是每一次相乘相加得到的只是中间值,最终结果得等程序跑完之后才能算出

复杂度: A矩阵里非零元素的个数 * colB
class Solution {
    public int[][] multiply(int[][] A, int[][] B) {
        int rowA = A.length;
        int colA = A[0].length;
        int colB = B[0].length;
        int[][] rt = new int[rowA][colB];
        
        for (int i = 0; i < rowA; i++) {
            for (int j = 0; j < colA; j++) {
                if (A[i][j] != 0) {
                    for (int k = 0; k < colB; k++) {
                        rt[i][k] += A[i][j] * B[j][k];
                    }
                }
            }
        }
        
        return rt;
    }
}
稀疏矩阵压缩后再进行乘积。压缩的方法是保证行数不变,只存下非零的列数跟数值。
http://www.cs.cmu.edu/~scandal/cacm/node9.html

此方法对这题而言不是什么好解法,因为题目已经给定了2个非压缩的2维矩阵
class Solution {
    public int[][] multiply(int[][] A, int[][] B) {
        int rowA = A.length;
        int colA = A[0].length;
        int colB = B[0].length;
        int[][] rt = new int[rowA][colB];
        
        List<List<Integer>> sA = getCompressed(A);
        List<List<Integer>> sB = getCompressed(B);
    
        for (int i = 0; i < rowA; i++) {
            for (int j = 0; j < sA.get(i).size(); j += 2) {                
                int colAA = sA.get(i).get(j);
                int valAA = sA.get(i).get(j + 1);    
                
                for (int k = 0; k < sB.get(colAA).size(); k += 2) {
                    int colBB = sB.get(colAA).get(k);
                    int valBB = sB.get(colAA).get(k + 1);    
                    rt[i][colBB] += valAA * valBB;
                }
                
            }
        }
        
        return rt;
    }
    
    private List<List<Integer>> getCompressed(int[][] matrix) {
        List<List<Integer>> s = new ArrayList<>();
        for (int i = 0; i < matrix.length; i++) {
            List<Integer> r = new ArrayList<>();
            for (int j = 0; j < matrix[0].length; j++) {
                if (matrix[i][j] != 0) {
                    r.add(j);
                    r.add(matrix[i][j]);
                }
            }
            s.add(r);
        }
        return s;
    }
}

543Diameter of Binary Tree
Given a binary tree, you need to compute the length of the diameter of the tree. The diameter of a binary tree is the length of the longest path between any two nodes in a tree. This path may or may not pass through the root.
Example:
Given a binary tree 
          1
         / \
        2   3
       / \     
      4   5    
Return 3, which is the length of the path [4,2,1,3] or [5,2,1,3].
Note: The length of path between two nodes is represented by the number of edges between them.


----------------------------
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    private int max = 0;
    public int diameterOfBinaryTree(TreeNode root) {
        rec(root);
        return max;
    }
    
    private int rec(TreeNode root) {
        if (root == null) return 0;
        int left = rec(root.left);
        int right = rec(root.right);
        
        max = Math.max(max, left + right);
        return Math.max(left, right) + 1;
    }
}

Tuesday, May 29, 2018

314 Binary Tree Vertical Order Traversal

314. Binary Tree Vertical Order Traversal

Given a binary tree, return the vertical order traversal of its nodes' values. (ie, from top to bottom, column by column).
If two nodes are in the same row and column, the order should be from left to right.
Examples 1:
Input: [3,9,20,null,null,15,7]

   3
  /\
 /  \
 9  20
    /\
   /  \
  15   7 

Output:

[
  [9],
  [3,15],
  [20],
  [7]
]
Examples 2:
Input: [3,9,8,4,0,1,7]

     3
    /\
   /  \
   9   8
  /\  /\
 /  \/  \
 4  01   7 

Output:

[
  [4],
  [9],
  [3,0,1],
  [8],
  [7]
]
Examples 3:
Input: [3,9,8,4,0,1,7,null,null,null,2,5] (0's right child is 2 and 1's left child is 5)

     3
    /\
   /  \
   9   8
  /\  /\
 /  \/  \
 4  01   7
    /\
   /  \
   5   2

Output:

[
  [4],
  [9,5],
  [3,0,1],
  [8,2],
  [7]
]

------------------
Solution #1, 树的level order,可以保证col内部node的顺序
额外的queue是为了记录当前node的col,因为不能改变原有的树的数据结构
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public List<List<Integer>> verticalOrder(TreeNode root) {
        
        if (root == null) return new ArrayList<>();
        
        Map<Integer, List<Integer>> map = new HashMap<>();
        Queue<TreeNode> q = new LinkedList<>();
        Queue<Integer> cols = new LinkedList<>();
        int col = 0;
        q.add(root);
        cols.add(col);
        int minCol = 0;
        int maxCol = 0;
        
        while (!q.isEmpty()) {
            TreeNode top = q.poll();
            col = cols.poll();
            
            if (!map.containsKey(col)) {
                map.put(col,new ArrayList<Integer>());
            }
            map.get(col).add(top.val);
            
            if (top.left != null) {
                cols.add(col - 1);
                q.add(top.left);
                minCol = Math.min(minCol, col - 1);
            }
            
            if (top.right != null) {
                cols.add(col + 1);
                q.add(top.right);
                maxCol = Math.max(maxCol, col + 1);
            }
        }
        
        List<List<Integer>> rt = new ArrayList<>();
        for (int i = minCol; i <= maxCol; i++) {
            rt.add(map.get(i));
        }
        
        return rt;
    }
}

Sunday, May 27, 2018

325 Maximum Size Subarray Sum Equals k

325Maximum Size Subarray Sum Equals k
Given an array nums and a target value k, find the maximum length of a subarray that sums to k. If there isn't one, return 0 instead.
Note:
The sum of the entire nums array is guaranteed to fit within the 32-bit signed integer range.
Example 1:
Input: nums = [1, -1, 5, -2, 3], k = 3
Output: 4 
Explanation: The subarray [1, -1, 5, -2] sums to 3 and is the longest.
Example 2:
Input: nums = [-2, -1, 2, 1], k = 1
Output: 2 
Explanation: The subarray [-1, 2] sums to 1 and is the longest.
Follow Up:
Can you do it in O(n) time?
---------------------
Solution #1
Map里key = [0 - i] 的和,value = i.
因为要找的是最左边的点(与当前i距离最远),所以遇到重复的key可以跳过
class Solution {
    public int maxSubArrayLen(int[] nums, int k) {
        Map<Integer, Integer> map = new HashMap<>();
        int len = 0;
        int sofar = 0;
        
        for (int i = 0; i < nums.length; i++) {
            sofar += nums[i];
            if (sofar == k) len = i + 1;
            if (map.containsKey(sofar - k)) {
                len = Math.max(len, i - map.get(sofar - k));
            }
            
            if (!map.containsKey(sofar)) map.put(sofar, i);
        }
        
        return len;
    }
}

Tuesday, May 22, 2018

621 Task Scheduler

621Task Scheduler
Given a char array representing tasks CPU need to do. It contains capital letters A to Z where different letters represent different tasks.Tasks could be done without original order. Each task could be done in one interval. For each interval, CPU could finish one task or just be idle.
However, there is a non-negative cooling interval n that means between two same tasks, there must be at least n intervals that CPU are doing different tasks or just be idle.
You need to return the least number of intervals the CPU will take to finish all the given tasks.
Example 1:
Input: tasks = ["A","A","A","B","B","B"], n = 2
Output: 8
Explanation: A -> B -> idle -> A -> B -> idle -> A -> B.
Note:

  1. The number of tasks is in the range [1, 10000].
  2. The integer n is in the range [0, 100].
------------------------
Solution #1, 数empty slots。Leetcode上有讲解
复杂度是O(n), n等于task的数量
另一种类似方法是计算相同最大出现次数元素的个数。[A3,B3,C1,D1], 个数为2,A和B。
class Solution {
    public int leastInterval(char[] tasks, int n) {
        int[] map = new int[26];
        
        for (char c : tasks) {
            map[c - 'A']++;
        }
        
        Arrays.sort(map);
        
        int maxCount = map[25] - 1;
        int slots = maxCount * n;
        for (int i = 24; i >= 0; i--) {
            slots -= Math.min(maxCount, map[i]);
        }
        
        if (slots > 0) {
            return slots + tasks.length;
        }
        return tasks.length;
    }
}

Solution#2,priority queue
class Solution {
    public int leastInterval(char[] tasks, int n) {
        int[] map = new int[26];
        
        for (char c : tasks) {
            map[c - 'A']++;
        }
        
        PriorityQueue<Integer> queue = new PriorityQueue<>(26, Collections.reverseOrder());
        for (int i : map) {
            queue.add(i);
        }
        
        int top = queue.poll();
        int count = top;
        for (int i = 0; i < top - 1; i++) {
            List<Integer> hold = new ArrayList<>();
            int index = 0;
            while (index < n && !queue.isEmpty()) {
                int pop = queue.poll() - 1;
                if (pop > 0) {
                    hold.add(pop);
                }
                
                index++;
                count++;
            }
            count += n - index;
            
            for (int j : hold) {
                queue.add(j);
            }
        }
        
        while (!queue.isEmpty()) {
            count += queue.poll();
        }
        
        return count;
    }
}

Sunday, May 6, 2018

388, 683 Longest Absolute File Path, K Empty Slots

388. Longest Absolute File Path

Suppose we abstract our file system by a string in the following manner:
The string "dir\n\tsubdir1\n\tsubdir2\n\t\tfile.ext" represents:
dir
    subdir1
    subdir2
        file.ext
The directory dir contains an empty sub-directory subdir1 and a sub-directory subdir2 containing a file file.ext.
The string "dir\n\tsubdir1\n\t\tfile1.ext\n\t\tsubsubdir1\n\tsubdir2\n\t\tsubsubdir2\n\t\t\tfile2.ext" represents:
dir
    subdir1
        file1.ext
        subsubdir1
    subdir2
        subsubdir2
            file2.ext
The directory dir contains two sub-directories subdir1 and subdir2. subdir1 contains a file file1.ext and an empty second-level sub-directory subsubdir1. subdir2 contains a second-level sub-directory subsubdir2 containing a file file2.ext.
We are interested in finding the longest (number of characters) absolute path to a file within our file system. For example, in the second example above, the longest absolute path is "dir/subdir2/subsubdir2/file2.ext", and its length is 32 (not including the double quotes).
Given a string representing the file system in the above format, return the length of the longest absolute path to file in the abstracted file system. If there is no file in the system, return 0.
Note:

  • The name of a file contains at least a . and an extension.
  • The name of a directory or sub-directory will not contain a ..

Time complexity required: O(n) where n is the size of the input string.
Notice that a/aa/aaa/file1.txt is not the longest file path, if there is another path aaaaaaaaaaaaaaaaaaaaa/sth.png.
----------------------------------
1. Get the current level
2. Keep the length-so-far of previous levels in stack or array.

 Solution #1, with Stack
class Solution {
    public int lengthLongestPath(String input) {
        Stack<Integer> s = new Stack<>();
        int currentLevel = 1;
        int index = 0;
        String str = "";
        int maxLength = 0;

        while (index <= input.length()) {
            if (index == input.length() || input.charAt(index) == '\n') {
                while (currentLevel - s.size() <= 0 && !s.isEmpty()) {
                    s.pop();
                }

                int currentLength = 0;
                if (!s.isEmpty()) {
                    currentLength = s.peek() + 1;
                }
                currentLength += str.length();
                s.push(currentLength);
                
                if (isFile(str)) {
                    maxLength = Math.max(maxLength, currentLength);
                }
                
                currentLevel = 1;
                str = "";
            } else if (input.charAt(index) == '\t') {
                currentLevel++;
            } else {
                str += input.charAt(index);
            }
            index++;
        }

        return maxLength;
    }
    
    private static boolean isFile(String str) {
        return  str.indexOf(".") > -1;
    } 
}

Solution #2, with array
class Solution {
    public int lengthLongestPath(String input) {
        List<Integer> levels = new ArrayList<>();
        int index = 0;
        int currentLevel = 0;
        StringBuilder stb = new StringBuilder();
        int maxLength = 0;
        
        while (index <= input.length()) {
            if (index == input.length() || input.charAt(index) == '\n') {
                int preLevelSum = getPreLevel(currentLevel - 1, levels);
                int currentLength = preLevelSum + stb.length();
                
                levels.add(currentLevel, currentLength);
                if (isFile(stb.toString())) {
                    maxLength = Math.max(maxLength, currentLength);
                }
                
                stb = new StringBuilder();
                currentLevel = 0;
            } else if (input.charAt(index) == '\t') {
                currentLevel++;
            } else {
                stb.append(input.charAt(index));
            }
            
            index++;
        }
        
        return maxLength;
    }
    
    private int getPreLevel(int level, List<Integer> levels) {
        if (level < 0) {
            return 0;
        }
        
        return levels.get(level) + 1;
    }
    
    private static boolean isFile(String str) {
        return  str.indexOf(".") > -1;
    }
}
Shorter version, from online
class Solution {
    public int lengthLongestPath(String input) {
        String[] paths = input.split("\n");
        int[] stack = new int[paths.length+1];
        int maxLen = 0;
        for(String s : paths){
            int level = s.lastIndexOf("\t") + 1;
            int currentLength = stack[level] + s.length() - level + 1;
            stack[level + 1] = currentLength;
            if(s.contains(".")) {
                maxLen = Math.max(maxLen, currentLength - 1);
            }
        }
        return maxLen;
    }
}


683K Empty Slots
There is a garden with N slots. In each slot, there is a flower. The N flowers will bloom one by one in N days. In each day, there will be exactly one flower blooming and it will be in the status of blooming since then.
Given an array flowers consists of number from 1 to N. Each number in the array represents the place where the flower will open in that day.
For example, flowers[i] = x means that the unique flower that blooms at day i will be at position x, where i and x will be in the range from 1 to N.
Also given an integer k, you need to output in which day there exists two flowers in the status of blooming, and also the number of flowers between them is k and these flowers are not blooming.
If there isn't such day, output -1.
Example 1:
Input: 
flowers: [1,3,2]
k: 1
Output: 2
Explanation: In the second day, the first and the third flower have become blooming.
Example 2:
Input: 
flowers: [1,2,3]
k: 1
Output: -1
Note:

  1. The given array will be in the range [1, 20000].
------------------------------
Solution #1
1. 建立flower -> day的对应days[]
2. 对于i和 i+k+1 位置的花,如果中间所有的位置开花时间比两者都大,则可以确认i和i+k+1为可能的答案

class Solution {
    public int kEmptySlots(int[] flowers, int k) {  
        int len = flowers.length + 1;
        int[] days = reverseFlowers(flowers);

        int prePos = 1;
        int futurePos = prePos + k + 1;
        int index = prePos + 1;
        int shortest = Integer.MAX_VALUE;
        while (index < len && futurePos < len) {
            if (index == futurePos) {
                shortest = Math.min(shortest, Math.max(days[futurePos], days[prePos]));
                prePos = index;
                futurePos = prePos + k + 1;
            } else if (days[index] < days[futurePos] || days[index] < days[prePos]) {
                prePos = index;
                futurePos = prePos + k + 1;
            }

            index++;
        }

        return shortest == Integer.MAX_VALUE ? -1 : shortest;
    }
    
    private int[] reverseFlowers(int[] flowers) {
        int len = flowers.length + 1;
        int days[] = new int[len];
        
        for (int i = 1; i < len; i++) {
            days[flowers[i - 1]] = i;
        }
        
        return days;
    }
}

这题有点范围搜索的意思
Solution #2
每开完一朵花,分别检查它左右范围(k+1)的花是否开放,且两者之间的花都未开放
参考:http://zxi.mytechroad.com/blog/simulation/leetcode-683-k-empty-slots/
class Solution {
    public int kEmptySlots(int[] flowers, int k) {
        int len = flowers.length;
        boolean[] bloomed = new boolean[len];
        int minDay = Integer.MAX_VALUE;
        
        for (int i = 0; i < len; i++) {
            int pos = flowers[i] - 1;
            if (isValidDay(pos, bloomed, k)) {
                return i + 1;
            }
        }
        
        return -1;
    }
    
    public boolean isValidDay(int pos, boolean[] bloomed, int k) {
        int len = bloomed.length;
        bloomed[pos] = true;
        if (pos + k + 1 < len && bloomed[pos + k + 1]) {
            boolean valid = true;
            for (int i = pos + 1; i < pos + k + 1; i++) {
                if (bloomed[i]) {
                    valid = false;
                    break;
                }
            }
            
            if (valid) return true;
        }
        
        if (pos - k - 1 >= 0 && bloomed[pos - k - 1]) {
            boolean valid = true;
            for (int i = pos - k; i < pos; i++) {
                if (bloomed[i]) {
                    return false;
                }
            }
            
            return true;
        }
        
        return false;
    }
}
Solution #3, 用BinarySearchTree来存开过花的位置
class Solution {
    public int kEmptySlots(int[] flowers, int k) {
        TreeSet<Integer> bst = new TreeSet<>();
        for (int i = 0; i < flowers.length; i++) {
            int pos = flowers[i];
            bst.add(pos);
            Integer lower = bst.lower(pos);
            Integer higher = bst.higher(pos);
            if (bst.lower(pos) != null) {
                if (pos - lower == k + 1) {
                    return i + 1;
                }
            }
            if (bst.higher(pos) != null) {
                if (pos + k + 1 == higher) {
                    return i + 1;
                }
            }
        }
        
        return -1;
    }
}
Solution #4, 类似bucket sort,每个bucket的大小为 k + 1
class Solution {
    public int kEmptySlots(int[] flowers, int k) {
        int len = flowers.length;
        int bucketSize = (len + k) / (k + 1);
        List<Integer> lower = getBucket(Integer.MAX_VALUE, bucketSize);
        List<Integer> higher = getBucket(Integer.MIN_VALUE, bucketSize);

        for (int i = 0; i < len; i ++) {
            int slot = flowers[i];
            int curBucket = (slot - 1) / (k + 1);
            if (slot < lower.get(curBucket)) {
                lower.set(curBucket, slot);
                if (curBucket > 0 && slot - k - 1 == higher.get(curBucket - 1)) {
                    return i + 1;
                }
            }

            if (slot > higher.get(curBucket)) {
                higher.set(curBucket, slot);
                if (curBucket < bucketSize - 1 && slot + k + 1== lower.get(curBucket + 1)) {
                    return i + 1;
                }
            }
        }

        return -1;
    }
    
    public List<Integer> getBucket(int fill, int size) {
        List<Integer> rt = new ArrayList<>();
        for (int i = 0; i < size; i ++) {
            rt.add(fill);
        }
        return rt;
    }
}

Saturday, March 25, 2017

Day 136, 380, Insert Delete GetRandom O(1)

380. Insert Delete GetRandom O(1)
Design a data structure that supports all following operations in average O(1) time.
  1. insert(val): Inserts an item val to the set if not already present.
  2. remove(val): Removes an item val from the set if present.
  3. getRandom: Returns a random element from current set of elements. Each element must have the same probability of being returned.
class RandomizedSet {
    private static Random random = new Random();
    private List<Integer> list;
    private Map<Integer, Integer> map;
    private int size;
    /** Initialize your data structure here. */
    public RandomizedSet() {
        size = 0;
        list = new ArrayList<>();
        map = new HashMap<>();
    }
    
    /** Inserts a value to the set. Returns true if the set did not already contain the specified element. */
    public boolean insert(int val) {
        if (map.containsKey(val)) return false;
        map.put(val, size);
        if (list.size() == size) {
            list.add(size, val);   
        }else {
            list.set(size, val);
        }
        size++;
        
        return true;
    }
    
    /** Removes a value from the set. Returns true if the set contained the specified element. */
    public boolean remove(int val) {
        if (!map.containsKey(val)) return false;
        
        int pos = map.get(val);
        int value = list.get(size - 1);
        list.set(pos, value);
        map.put(value, pos);
        size--;
        map.remove(val);
        
        return true;
    }
    
    /** Get a random element from the set. */
    public int getRandom() {
        return list.get(random.nextInt(size));
    }
}

/**
 * Your RandomizedSet object will be instantiated and called as such:
 * RandomizedSet obj = new RandomizedSet();
 * boolean param_1 = obj.insert(val);
 * boolean param_2 = obj.remove(val);
 * int param_3 = obj.getRandom();
 */

Follow up: duplicates are allowed.
Use Set as values in the map

Saturday, March 18, 2017

Day 135, 532, 438, 387, 459, K-diff Pairs in an Array, Find All Anagrams in a String, First Unique Character in a String, Repeated Substring Pattern

532. K-diff Pairs in an Array
Given an array of integers and an integer k, you need to find the number of unique k-diff pairs in the array. Here a k-diff pair is defined as an integer pair (i, j), where i and j are both numbers in the array and their absolute difference is k.
Example 1:
Input: [3, 1, 4, 1, 5], k = 2
Output: 2
Explanation: There are two 2-diff pairs in the array, (1, 3) and (3, 5).
Although we have two 1s in the input, we should only return the number of unique pairs.
Example 2:
Input:[1, 2, 3, 4, 5], k = 1
Output: 4
Explanation: There are four 1-diff pairs in the array, (1, 2), (2, 3), (3, 4) and (4, 5).
Example 3:
Input: [1, 3, 1, 5, 4], k = 0
Output: 1
Explanation: There is one 0-diff pair in the array, (1, 1).
Note:
  1. The pairs (i, j) and (j, i) count as the same pair.
  2. The length of the array won't exceed 10,000.
  3. All the integers in the given input belong to the range: [-1e7, 1e7].
public class Solution {
    public int findPairs(int[] nums, int k) {
        if (k < 0) return 0;
        
        Set<Integer> set = new HashSet<>();
        Set<Integer> firtInPair = new HashSet<>();
        
        for (int i = 0; i < nums.length; i++) {
            int cur = nums[i];
            if (set.contains(cur + k)) {
                firstInPair.add(cur);
            }
            if (set.contains(cur - k)) {
                firstInPair.add();
            }
            set.add(cur);
        }
        
        return cur.size();
    }
}


438. Find All Anagrams in a String
Given a string s and a non-empty string p, find all the start indices of p's anagrams in s.
Strings consists of lowercase English letters only and the length of both strings s and p will not be larger than 20,100.
The order of output does not matter.
Example 1:
Input:
s: "cbaebabacd" p: "abc"

Output:
[0, 6]

Explanation:
The substring with start index = 0 is "cba", which is an anagram of "abc".
The substring with start index = 6 is "bac", which is an anagram of "abc".
Example 2:
Input:
s: "abab" p: "ab"

Output:
[0, 1, 2]

Explanation:
The substring with start index = 0 is "ab", which is an anagram of "ab".
The substring with start index = 1 is "ba", which is an anagram of "ab".
The substring with start index = 2 is "ab", which is an anagram of "ab".
Sliding window
另一种写法是用array[256]来代替Map,代码会更简洁。因为array[char] == 0可以同时代表没有出现过的char和已经用完的char
public class Solution {
    public List findAnagrams(String s, String p) {
        Map occurance = getOccurance(p);
        return findIndexes(s, p.length(), occurance, new HashMap<>(occurance));
    }
    
    private Map getOccurance(String p) {
        Map occ = new HashMap<>();
        
        for (int i = 0; i < p.length(); i++) {
            char c = p.charAt(i);
            if (occ.containsKey(c)) {
                occ.put(c, occ.get(c) + 1);
            } else {
              occ.put(c, 1);  
            }
        }
        
        return occ;
    }
    
    private List findIndexes(String s, int count, Map occ, Map backup) {
        
        List rt = new ArrayList<>();
        int start = 0;
        for (int i = 0; i < s.length(); i++) {
            char c =s.charAt(i);
            if (!occ.containsKey(c)) {
                // reset
                occ = new HashMap<>(backup);
                start = i + 1;
                count = occ.size();
                continue;
            }
            
            while (occ.get(c) == 0) {
                occ.put(s.charAt(start), occ.get(s.charAt(start)) + 1);
                start++;
                count++;
            }
            
            count--;
            if (count == 0) {
                rt.add(start);
            }
            occ.put(c, occ.get(c) - 1);
        }
        
        return rt;
    }
}
387. 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.

Note: You may assume the string contain only lowercase letters.
public class Solution {
    public int firstUniqChar(String s) {
        int occ[] = new int[256];
        
        for (int i = 0; i < s.length(); i++) {
            int val = s.charAt(i) - '0';
            occ[val]++;
        }
        
        for (int i = 0; i < s.length(); i++) {
            int val = s.charAt(i) - '0';
            if (occ[val] == 1) {
                return i;
            }
        }
        
        return -1;
    }
}
459. Repeated Substring Pattern
Given a non-empty string check if it can be constructed by taking a substring of it and appending multiple copies of the substring together. You may assume the given string consists of lowercase English letters only and its length will not exceed 10000.
Example 1:
Input: "abab"

Output: True

Explanation: It's the substring "ab" twice.
Example 2:
Input: "aba"

Output: False
Example 3:
Input: "abcabcabcabc"

Output: True

Explanation: It's the substring "abc" four times. (And the substring "abcabc" twice.)
可以用KMP
以下方法可以稍微再简化:inner loop里可以把所有的substring加起来然后跟原来的比较
public class Solution {
    public boolean repeatedSubstringPattern(String s) {
        
        for (int i = 0; i < s.length() / 2; i++) {
            if (s.length() % (i + 1) != 0) {
                continue;
            }
            
            String sub = s.substring(0, i + 1);
            boolean flag = true;
            for (int j = i + 1; j < s.length() - i; j += i + 1) {
                String secSub = s.substring(j, j + i + 1);
                if (!secSub.equals(sub)) {
                    flag = false;
                    break;
                }
            }
            if (flag == true) return true;
        }
        
        return false;
    }
}