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

数学、计算几何、位运算常见问题详解

时间:2017-11-07 01:33:17      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:ack   indent   span   arc   arch   neu   hit   gif   nsf   

? 矩阵上的问题(3题)

Search a 2D Matrix II

技术分享
    public int searchMatrix(int[][] matrix, int target) {
        // write your code here
        int n = matrix.length;
        if (n == 0) {
            return 0;
        }
        int m = matrix[0].length;
        if (m == 0) {
            return 0;
        }
        int i = n - 1;
        int j = 0;
        int res = 0;
        while (i >= 0 && j < m) {
            if (matrix[i][j] == target) {
                res++;
                i--;
                j++;
            } else if (matrix[i][j] > target) {
                i--;
            } else {
                j++;
            }
        }
        return res;
    }
View Code


? 高精度运算(4题)
? 快速幂(1题)

数学、计算几何、位运算常见问题详解

标签:ack   indent   span   arc   arch   neu   hit   gif   nsf   

原文地址:http://www.cnblogs.com/whesuanfa/p/7795923.html

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