Java基础

剑指offer java刷一遍
https://www.jianshu.com/p/010410a4d419

image.png

清晰 https://www.zhihu.com/question/36914829

StringBuffer 和 StringBuilder

/**
*    public class ListNode {
*        int val;
*        ListNode next = null;
*
*        ListNode(int val) {
*            this.val = val;
*        }
*    }
*
*/
import java.util.Stack;
import java.util.ArrayList;
public class Solution {
    public ArrayList<Integer> printListFromTailToHead(ListNode listNode) {
        Stack<Integer> stack = new Stack<>();
        while (listNode != null) {
            stack.push(listNode.val);
            listNode = listNode.next;
        }
 
        ArrayList<Integer> list = new ArrayList<>();
        while (!stack.isEmpty()) {
            list.add(stack.pop());
        }
        return list;       
    }
}
两个栈实现队列

import java.util.Stack;

public class stack_queue {
    Stack<Integer> stack1 = new Stack<Integer>();
    Stack<Integer> stack2 = new Stack<Integer>();

    public void push(int node) {
        stack1.push(node);
    }

    public int pop() {
        if(stack2.isEmpty()){
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
            return stack2.pop();
        }else {
            return stack2.pop();
        }
    }
}

旋转数组的最小元素

用二分法,二分法为了简便可以一直使用 start + 1 < end,但需要判断最后两个元素值。

import java.util.ArrayList;
public class Solution {
   public int minNumberInRotateArray(int [] array) {
        if(array==null||array.length==0){
            return 0;
        }
        int start = 0;
        int end = array.length - 1;
        int mid = 0;
        while (start + 1 < end){
            mid = start + (end - start) / 2;
            if(array[mid] > array[end]){
                start = mid + 1;
            }else{
                end = mid;
            }
        }
        if(array[start] < array[end])
            return array[start];
        else
            return array[end];
    }
}
跳台阶问题
public class Solution {
    public int JumpFloor(int target) {
        if(target <= 2){
            return target;
        }
        int pre = 2;
        int prepre = 1;
        int temp = 0;
        for(int i=3;i<target+1;i++){
            temp = pre;
            pre = pre + prepre;
            prepre = temp;
        }
        return pre;
    }
}

1的个数

   public int NumberOf1(int n) {
        int count = 0;
        if(n >= 0){
            while(n!=0){
                count = count + (n & 1);
                n = (n>>1);
            }
        }else {
            n = ~n;
            while(n!=0){
                count = count + (n & 1);
                n = (n>>1);
            }
            count = 32 - count;
        }
        return count;
    }

另一种巧妙方法

public class Solution {
    public int NumberOf1(int n) {
        int count = 0;
        while(n!= 0){
            count++;
            n = n & (n - 1);
         }
        return count;
    }
}

如果一个整数不为0,那么这个整数至少有一位是1。如果我们把这个整数减1,那么原来处在整数最右边的1就会变为0,原来在1后面的所有的0都会变成1(如果最右边的1后面还有0的话)。其余所有位将不会受到影响。
举个例子:一个二进制数1100,从右边数起第三位是处于最右边的一个1。减去1后,第三位变成0,它后面的两位0变成了1,而前面的1保持不变,因此得到的结果是1011.我们发现减1的结果是把最右边的一个1开始的所有位都取反了。这个时候如果我们再把原来的整数和减去1之后的结果做与运算,从原来整数最右边一个1那一位开始所有位都会变成0。如1100&1011=1000.也就是说,把一个整数减去1,再和原整数做与运算,会把该整数最右边一个1变成0.那么一个整数的二进制有多少个1,就可以进行多少次这样的操作。

算法提升篇

求连续子数组的最大和--动态规划

public class maxSumofContinueArray {
    public static int FindGreatestSumOfSubArray(int[] array) {
        int max = array[0];
        int preMax = 0;
        for(int i=0;i<array.length;i++){
            if(preMax >= 0)
                preMax = preMax + array[i];
            else
                preMax = array[i];
            if(preMax > max)
                max = preMax;
        }
        return max;
    }
    public static void main(String [] args){
        int[] data = {1,-2,3,10,-4,7,2,-5};
        System.out.println(FindGreatestSumOfSubArray(data));
    }
}

剪绳子

public class cutRope {
    public static int maxCutting(int length){
        if(length <= 1) return 0;
        if(length < 4) return length - 1;
        int []res = new int[length+1];
        res[0] = 0;
        res[1] = 1;
        res[2] = 2;
        res[3] = 3;
        int max = 0;
        int temp = 0;
        for(int i=4; i<=length; i++){
            max = 0;
            for(int j=1;j<=i/2;j++){
                temp = res[j]*res[i-j];
                if(temp > max) max = temp;
            }
            res[i] = max;
        }
        return res[length];
    }
}
数组翻译成字符串

0对应a,25对应z,给定一个整数,看有多少种对应方式。动态规划的典型问题。

public class numberToString {
    public static int getTranslationCount(int number){
        if(number < 0) return 0;
        return getTranslationCount(Integer.toString(number));
    }
    public static int getTranslationCount(String number){
        int pre = 1;
        int prepre = 1;
        int temp = 0, g = 1;
        for(int i=number.length()-2;i>=0;i--){
            if(Integer.parseInt(number.charAt(i)+""+number.charAt(i+1))<26 && number.charAt(i) != '0'){
                g = 1;
            } else{
                g = 0;
            }
            temp = pre;
            pre = pre + g*prepre;
            prepre = temp;
        }
        return pre;
    }
    public static void main(String[] args){
        System.out.println(getTranslationCount(1204));
    }
}
最长不重复子串
public class maxLengthOfNoDup {
    public static int longestSubstringWithoutdup(String str){
        if(str==null || str.length()==0)
            return 0;
        int[] dp = new int[str.length()];
        dp[0] = 1;
        int max = 1;
        for(int i=1;i<dp.length;i++){
            int j=i-1;
            for(;j>=i-dp[i-1];j--){
                if(str.charAt(i) == str.charAt(j))
                    break;
            }
            dp[i] = i - j;
            if(dp[i]>max)
                max = dp[i];
        }
        return max;
    }
    public static void main(String[] args){
        System.out.println(longestSubstringWithoutdup("arabcadecefr"));
    }
}

关键在于这句的理解 (;j>=i-dp[i-1];j--)。
这道题还是需要认真理解,首先为什么不能够直接从j=i-1一直遍历到j=0,因为要保证遍历的范围是不重复的,比如[2,3,2,4,5,6],对4来说和前面三个都不相等,但是里面就有2重复,需要根据前面一个的最大范围确定所能遍历的范围。遍历到j=m时加入相等,则会停止,计算元素个数是i-j+1,这里没有+1,因为for循环先对j进行了减1操作。

矩阵中的路径(回溯)
public class PathInArray {
    public static boolean hasPath(char[][] data, String str){
        if(data==null || data.length==0 || str==null || str.length()==0)
            return false;
        int m = data.length;
        int n = data[0].length;
        boolean[][] visted = new boolean[m][n];
        for(int i=0;i<m;i++){
            for(int j=0;j<n;j++){
                visted[i][j] = false;
            }
        }
        boolean res;
        for(int i=0;i<m;i++){
            for(int j=0;j<n;j++){
                res = dfs(data,visted,i,j,str,0);
                if(res)
                    return true;
            }
        }
        return false;
    }
    private static boolean dfs(char[][] data,boolean[][] visted,int m, int n , String str, int pos){
        if(pos==str.length()) return true;
        if(m<0 || m >= data.length || n < 0 || n >= data[0].length)
            return false;
        if(visted[m][n] || data[m][n] != str.charAt(pos)) return false;
        visted[m][n] = true;
        boolean res = dfs(data,visted,m+1,n,str,pos+1) ||
        dfs(data,visted,m-1,n,str,pos+1) ||
        dfs(data,visted,m,n-1,str,pos+1) ||
        dfs(data,visted,m,n+1,str,pos+1);
        visted[m][n] = false;
        return res;
    }
    public static void main(String[] args){
        char[][] data = {
            {'a','b','t','g'},
            {'c','f','c','s'},
            {'j','d','e','h'}
        };
        System.out.println(hasPath(data,"bfce"));
        System.out.println(hasPath(data,"abfb"));
    }
}
机器人的运动范围
public class robotMoveRange {
    public static int movingCount(int threshold, int cow, int row){
        if(threshold < 0 || cow < 0 || row < 0)
            return 0;
        boolean[][] visted = new boolean[cow][row];
        for(int i=0;i<cow;i++){
            for(int j=0;j<row;j++){
                visted[i][j] = false;
            }
        }
        int count = 0;
        dfs(count,threshold, visted, cow, row, 0, 0);
        // 返回的count=0,出现问题。整数是传值
        return count;
    }
    public static void dfs(int count, int threshold, boolean[][] visted, int cow, int row, int m, int n){
        if( m < 0 || m>=cow || n<0 || n>=row) return;
        if(visted[m][n]) return;
        visted[m][n] = true;
        if(getDigitSum(m) + getDigitSum(n) <= threshold) {
            count += 1;
            System.out.println(count); //最终结果正确
        }
        dfs(count, threshold, visted, cow, row, m-1, n);
        dfs(count, threshold, visted, cow, row, m+1, n);
        dfs(count, threshold, visted, cow, row, m, n+1);
        dfs(count, threshold, visted, cow, row, m, n-1);

    }
    public static int getDigitSum(int number){
        int sum = 0;
        while(number!=0){
            sum += number % 10;
            number /= 10;
        }
        return sum;
    }
    public static void main(String[] args){
        System.out.println(movingCount(9,2,20));
    }
}

上面的程序有一点问题。如何去改进。

public class robotMoveRange {
    public static int movingCount(int threshold, int cow, int row){
        if(threshold < 0 || cow < 0 || row < 0)
            return 0;
        boolean[][] visted = new boolean[cow][row];
        for(int i=0;i<cow;i++){
            for(int j=0;j<row;j++){
                visted[i][j] = false;
            }
        }
        int count = 0;
        count = dfs(threshold, visted, cow, row, 0, 0);
        // 返回的count=0,出现问题。整数是传值
        return count;
    }
    public static int dfs( int threshold, boolean[][] visted, int cow, int row, int m, int n){
        if( m < 0 || m>=cow || n<0 || n>=row) return 0;
        if(visted[m][n] || (getDigitSum(m) + getDigitSum(n) > threshold)) return 0;
        visted[m][n] = true;
        return dfs(threshold, visted, cow, row, m-1, n) +
        dfs( threshold, visted, cow, row, m+1, n) +
        dfs( threshold, visted, cow, row, m, n+1) +
        dfs(threshold, visted, cow, row, m, n-1) + 1;

    }
    public static int getDigitSum(int number){
        int sum = 0;
        while(number!=0){
            sum += number % 10;
            number /= 10;
        }
        return sum;
    }
    public static void main(String[] args){
        System.out.println(movingCount(9,2,20));
    }
}
一个数的整数次方


public class xPowerN {
    public static double mypower(double number, int n){
        if(n==0) return 1;
        if(n < 0){
            double res = mypower(number,-n);
            return 1.0/res;
        }else {
            double temp = mypower(number,n>>1);
            if((n & 1)==1){
                return temp * temp * number;
            }else
                return temp * temp;
        }
    }
    public static double mypower2(double number, int n){
        double res = 1;
        int abs_n = Math.abs(n);
        while(abs_n!=0){
            if((abs_n & 1) == 1)
                res *= number;
            abs_n >>= 1;
            number *= number;
        }
        if(number < 0) return 1.0/res;
        else return res;
    }
    public static void main(String[] args){
        double base = 2;
        int n = 10;
        System.out.println(mypower2(base, n));
    }
}

递归和循环两种基本思路。

排序链表删除重复元素

import com.ListNode;

import java.util.List;

// 删除排序链表重复节点,不保留
public class DeleteNodeInLinklist {
    public static ListNode DeleteDupNode(ListNode node){
        if(node==null || node.next==null)
            return node;
        ListNode dummy = new ListNode(-1);
        dummy.next = node;
        ListNode ptr = dummy;
        while(node != null && node.next != null){
            if(node.val != node.next.val){
                node = node.next;
                ptr = ptr.next;
            }else {
                while((node != null) && (node.next != null) && (node.val==node.next.val)){
                    node = node.next;
                }
                node = node.next;
                ptr.next = node;
            }
        }
        return dummy.next;
    }
    // 删除重复节点但保留一个
    public static ListNode DeleteDupNodeWithOne(ListNode node){
        if(node==null || node.next==null)
            return node;
        ListNode current = node;
        while(current != null && current.next != null){
            if(current.val == current.next.val)
                current.next = current.next.next;
            else
                current = current.next;
        }
        return node;
    }
}

BFS

树的按层遍历

队列相关知识 https://juejin.im/post/5a3763ed51882506a463b740

public class BTlevelOrderTravelsal {
    public  List<List<Integer>> levelOrder(TreeNode root){
        List<List<Integer>> res = new ArrayList<>();
        if(root == null) return res;
        // LinkedList ?
        Queue<TreeNode> nodes = new LinkedList<>();
        nodes.offer(root);
        while(!nodes.isEmpty()){
            List<Integer> subres = new ArrayList<>();
            int levelNum = nodes.size();
            for(int i=0;i<levelNum;i++){
                TreeNode node = nodes.poll();
                subres.add(node.val);
                if(node.left != null) nodes.offer(node.left);
                if(node.right != null) nodes.offer(node.right);
            }
            res.add(subres);
        }
        return res;
    }
}
之字形层次打印二叉树
class Solution {
    public List<List<Integer>> zigzagLevelOrder(TreeNode root) {
        List<List<Integer>> res = new ArrayList<>();
        if(root == null) return res;

        Queue<TreeNode> q = new LinkedList<>();
        q.add(root);
        boolean order = true;
        int size = 1;

        while(!q.isEmpty()) {
            List<Integer> tmp = new ArrayList<>();
            for(int i = 0; i < size; ++i) {
                TreeNode n = q.poll();
                if(order) {
                    tmp.add(n.val);
                } else {
                    tmp.add(0, n.val);
                }
                if(n.left != null) q.add(n.left);
                if(n.right != null) q.add(n.right);
            }
            res.add(tmp);
            size = q.size();
            order = order ? false : true;
        }
        return res;      
    }
}

Remove Invalid Parentheses (leetcode 301)

https://leetcode.com/problems/remove-invalid-parentheses/description/

public class Solution {
    public List<String> removeInvalidParentheses(String s) {
        List<String> res = new ArrayList<>();
        if (s == null){
            return res;
        }
        Set<String> visited = new HashSet<>();
        Queue<String> queue = new LinkedList<>();
        queue.offer(s);
        visited.add(s);
        boolean found = false;

        while (!queue.isEmpty()){
            String item = queue.poll();
            if(isVaild(item)){
                res.add(item);
                found = true;
            }
            if(found) continue;
            for(int i=0; i<item.length();i++){
               if(item.charAt(i) != '(' && item.charAt(i) !=')') continue;
               String t = item.substring(0,i) + item.substring(i+1);
               if(!visited.contains(t)){
                   queue.offer(t);
                   visited.add(t);
               }
            }
        }
        return res;
    }
        
    public static boolean isVaild(String s){
        int count = 0;
        for(int i=0; i<s.length();i++){
            if(s.charAt(i)=='(') count += 1;
            if(s.charAt(i)==')' && count-- == 0) return false;

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

推荐阅读更多精彩内容

  • Win7下如何打开DOS控制台? a:开始--所有程序--附件--命令提示符 b:开始--搜索程序和文件--cmd...
    逍遥叹6阅读 1,590评论 4 12
  • 50道经典Java编程练习题,将数学思维运用到编程中来。抱歉哈找不到文章的原贴了,有冒犯的麻烦知会声哈~ 1.指数...
    OSET我要编程阅读 6,950评论 0 9
  • 01奇数求和练习 A: 奇数求和练习a: 题目分析为了记录累加和的值,我们需要定义一个存储累加和的变量我们要获取到...
    Tyihou阅读 541评论 0 0
  • 第2章 基本语法 2.1 概述 基本句法和变量 语句 JavaScript程序的执行单位为行(line),也就是一...
    悟名先生阅读 4,132评论 0 13
  • “常回家看看,回家看看,妈妈准备了一些唠叨,爸爸张罗了一桌好饭。生活的烦恼和妈妈说说,工作的事情向爸爸谈谈……”多...
    Miya小桶阅读 468评论 0 2