Algorithm ladder III

Dec 27, 28

Binary Search

  • lintcode 61 search-for-a-range

  • lintcode 38 Search a 2D Matrix II, leetcode 240

  • lintcode 160.Find Minimum in Rotated Sorted Array II

  • lintcode 63.Search in Rotated Sorted Array II

  • leetcode 69. Sqrt(x), square root of an integer

  • lintcode 586 Sqrt(x) II, square root of a double

  • lintcode 160.Find Minimum in Rotated Sorted Array II --- TO DO

  • lintcode 63.Search in Rotated Sorted Array II ---- TO DO

  • lintcode 617.Maximum Average Subarray --- TO DO

  • lintcode 437.Copy Books --- TO DO

  • lintcode 183.Wood Cut -- TO DO 这两题都很有趣。二分法求最优

  • Binary tree, Divide and Conquer

  • lintcode 597.Subtree with Maximum Average

  • lintcode 110 Balanced Binary Tree (easy but typical)

lintcode 61 search-for-a-range

简单的求first 求last

package algorithm_ladder_III;

/**
 * lintcode 61
 *
 */
public class SearchForARange {
    public int[] searchRange(int[] A, int target) {
        // corner case:
        if (A==null || A.length == 0) {
            return new int[] {-1, -1};
        }
        
        int first = findBoundary(A, target, true);
        if (first == -1) return new int[] {-1, -1};
        int last = findBoundary(A, target, false);
        return new int[] {first, last};
    }
    
    // findFirst = true: find first of target
    // else find last of target;
    private int findBoundary(int[] A, int target, boolean findFirst) {
        int lo = 0, hi = A.length -1;
        while (lo + 1 < hi) {
            int mid = lo + (hi-lo) / 2;
            if ( target > A[mid]) {
                lo = mid;
            } else if (target < A[mid]) {
                hi = mid;
            } else {
                if (findFirst) {
                    hi = mid;
                } else {
                    lo = mid;
                }
            }
        }
        
        if (findFirst) {
            if (A[lo] == target) return lo;
            else if (A[hi] == target) return hi;
            else return -1;
        } else {
            if (A[hi] == target) return hi;
            else if (A[lo] == target) return lo;
            else return -1;
        }
    }
    
    public static void main(String[] args) {
        int[] A = new int[] {5, 7, 7, 8, 8, 10};
        int target = 8;
        SearchForARange s = new SearchForARange();
        int[] res = s.searchRange(A, target);
        System.out.println(res[0] + " " + res[1]); // should be [3, 4]
    }
}

lintcode 38 Search a 2D Matrix II

search a 2D matrix II

要点:最优解O(m+n) 走anti-diagonal entries.
一般解得化,可以逐行搜索;

package algorithm_ladder_III;

/**
 * leetcode 240
 */
public class SearchA2DMatrixII {
    public int searchMatrix(int[][] A, int target) {
        // corner case 
        if (A == null || A.length == 0) 
            return 0;
        
        int i = A.length-1, j = 0; // i^th row, j^th col --- the bottom left corner of the matrix
        int result = 0;
        while (i >= 0 && j < A[0].length) {
            if (A[i][j] > target) {
                i--;
            } else if (A[i][j] < target) {
                j++;
            } else {
                result++;
                i--;
                j++;
            }
        }
        return result;
    }
    
    public static void main(String[] args) {
        int[][] A = new int[3][4];
        A[0] = new int[] {1, 3, 5, 7};
        A[1] = new int[] {2, 4, 7, 8};
        A[2] = new int[] {3, 5, 9, 10};
        int target = 3;
        SearchA2DMatrixII s = new SearchA2DMatrixII();
        System.out.println(s.searchMatrix(A, target)); // should be 2   
    }
}

leetcode 69. Sqrt(x)

package algorithm_ladder_III;

public class Sqrt {
    public int mySqrt(int x) {
        // corner case;
        if (x == 0) return 0;
        
        
        int lo = 1, hi = x;
        while (lo + 1 < hi) {
            int mid = lo + (hi - lo) / 2;
            if (mid * mid < x) lo = mid;
            else if (mid * mid > x) hi = mid;
            else return mid;
        }
        System.out.println(lo + " " + hi);
        
        if (hi * hi <= x) return hi;
        else return lo;
    }
    
    public static void main(String[] args) {
        int x = 8;
        Sqrt s = new Sqrt();
        System.out.println(s.mySqrt(x)); // should be 2
    }
}

lintcode 586 Sqrt(x) II

package algorithm_ladder_III;

public class SqrtII {   
    public double sqrt(double x) {
        double lo = 0.0, hi;
        if (x > 1) hi = x;
        else hi = 1;
        
        while (lo + 1e-12 < hi) {
                double mid = lo + (hi-lo) / 2;
                if (x < mid * mid) hi = mid;
                else if (x > mid * mid) lo = mid;
                else return mid;
        }
        return lo;
    }

    public static void main(String[] args) {
        double x = 2;
        SqrtII s = new SqrtII();
        System.out.println(s.sqrt(x)); // should be 1.41421356
    }
}

lintcode 597.Subtree with Maximum Average

qoute

/*和path,Minimum Subtree这类题差不多,
* 这一类的题目都可以这样做:
* 开一个ResultType的变量result,
* 来储存拥有最大average的那个node的信息。
* 然后用分治法来遍历整棵树。
* 一个小弟找左子数的average,一个小弟找右子树的average。
* 然后通过这两个来计算当前树的average。
* 同时,我们根据算出来的当前树的average决定要不要更新result。
* 当遍历完整棵树的时候,
* result里记录的就是拥有最大average的子树的信息。
/

package algorithm_ladder_III.subtree_with_maximum_average;


public class SubtreeWithMaxAverage {
    class ResultType {
        int count;
        int sum;
        public ResultType(int count, int sum) {
            this.count = count;
            this.sum = sum;
        }
    }
    
    private TreeNode ResultNode = null;
    private double MaxAvg = Double.MIN_VALUE;
    public TreeNode findSubtree(TreeNode root) {
        sumAndCount(root);
        return ResultNode;
    }
    
    private ResultType sumAndCount(TreeNode root) {
        if (root == null) {
            return new ResultType(0, 0);
        }
        
        ResultType left = sumAndCount(root.left);
        ResultType right = sumAndCount(root.right);
        int newSum = left.sum + right.sum + root.val;
        int newCount = left.count + right.count + 1;
        ResultType r = new ResultType(newCount, newSum);
        if (MaxAvg < ((double) newSum / (double) newCount)) {
            MaxAvg = ((double) newSum / (double) newCount);
            ResultNode = root;
        }
        return r;
    }
    
    public static void main(String[] args) {
        TreeNode root = new TreeNode(3);
        TreeNode left = new TreeNode(1); left.left = new TreeNode(10); left.right = new TreeNode(15);
        TreeNode right = new TreeNode(2); right.left = new TreeNode(4); right.right = new TreeNode(5);
        root.left = left; root.right = right;
        
        SubtreeWithMaxAverage s = new SubtreeWithMaxAverage();
        
        TreeNode node = s.findSubtree(root);
        System.out.println(node.val); // should be 1;
    }
}

lintcode 110 Balanced Binary Tree (easy but typical)

问题是true or false,按照divide and conquer,helper function也可以是true and false,另外需要传递的是depth这个量,所以naturally想到一个result type包含这两个量。

比较smart的解法是把这两个量合成一个量,false用-1表示。(解法2)

package algorithm_ladder_III.normal_binary_tree;

/**
 * leetcode 110
 * 通过求深度来求判断是否是balanced
 */
public class BalancedBinaryTree {
    class ResultType {
        int depth;
        boolean isBalanced;
        ResultType(int depth, boolean isBalanced) {
            this.depth = depth;
            this.isBalanced = isBalanced;
        }
    }
    
    public boolean isBalanced(TreeNode root) {
        ResultType res = checkHeightAndBalance(root);
        return res.isBalanced;
    }
    
    private ResultType checkHeightAndBalance(TreeNode root) {
        if (root == null) return new ResultType(0, true);
        
        ResultType left = checkHeightAndBalance(root.left);
        ResultType right = checkHeightAndBalance(root.right);
        int newDepth = 1+ Math.max(left.depth, right.depth);
        boolean newIsBalanced = left.isBalanced && right.isBalanced && Math.abs(left.depth - right.depth) <= 1;
        return new ResultType(newDepth, newIsBalanced);
    }
}

or

package algorithm_ladder_III.normal_binary_tree;

/**
 * Alternative solution to leetcode 110
 */
public class BalancedBinaryTreeII {
    public boolean isBalanced(TreeNode root) {
        int r = getHeight(root);
        return r != -1;
    }
    
    public int getHeight(TreeNode root) {
        if (root == null) return 0;
        
        int left = getHeight(root.left);
        int right = getHeight(root.right);
        
        if (left == -1 || right == -1) return -1;
        if (Math.abs(left - right) <= 1) return 1 + Math.max(left, right);
        return -1;
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,294评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,780评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,001评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,593评论 1 289
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,687评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,679评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,667评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,426评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,872评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,180评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,346评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,019评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,658评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,268评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,495评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,275评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,207评论 2 352

推荐阅读更多精彩内容