劍指Offer【1-10】Java實現

1、在一個二維數組中(每個一維數組的長度相同),每一行都按照從左到右遞增的順序排序,每一列都按照從上到下遞增的順序排序。請完成一個函數,輸入這樣的一個二維數組和一個整數,判斷數組中是否含有該整數。

public class Solution {
    public boolean Find(int target, int [][] array) {
        int i = 0;
        int j = array[i].length-1;
        boolean flag = false;
        while(i<array.length&&j>=0){
            int tmp = array[i][j];
            if(tmp == target){
                flag = true;
                break;
            }
            if(target<tmp){
                j--;
            }
            if(target>tmp){
                i++;
            }
        }
        return flag;
    }
}

2、請實現一個函數,將一個字符串中的每個空格替換成“%20”。例如,當字符串爲We Are Happy.則經過替換之後的字符串爲We%20Are%20Happy。

public class Solution {
    public String replaceSpace(StringBuffer str) {

        int num = 0;
        for(int i=0; i<length; i++){
            if(iniString.charAt(i) == ' '){
                num++;
            }
        }
        char rs[] = new char[length+num*2];
        int k = 0;
        for(int j=0; j<length; j++){
            if(iniString.charAt(j) != ' '){
                rs[k] = iniString.charAt(j);
            }
            else{
                rs[k] = '%';
                rs[k+1] = '2';
                rs[k+2] = '0';
                k=k+2;
            }
            k++;

        }
        return String.valueOf(rs);
    }
}

3、輸入一個鏈表,按鏈表值從尾到頭的順序返回一個ArrayList。

/**
*    public class ListNode {
*        int val;
*        ListNode next = null;
*
*        ListNode(int val) {
*            this.val = val;
*        }
*    }
*
*/
import java.util.ArrayList;
public class Solution {
    public ArrayList<Integer> printListFromTailToHead(ListNode listNode) {
        ArrayList<Integer> list = new ArrayList<>();
        ListNode preNode;
        ListNode curNode;
        if(listNode == null){
            return list;
        }
        preNode = listNode;
        curNode = listNode.next;
        preNode.next = null;
        while(curNode!=null){
            ListNode tmp;
            tmp = curNode.next;
            curNode.next = preNode;
            preNode = curNode;
            curNode = tmp;
        }

        while(preNode!= null){
            list.add(preNode.val);
            preNode = preNode.next;
        }
        return list;
    }
}

4、輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列{1,2,4,7,3,5,6,8}和中序遍歷序列{4,7,2,1,5,3,8,6},則重建二叉樹並返回。

import java.util.*;
/**
 * Definition for binary tree
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public TreeNode reConstructBinaryTree(int [] pre,int [] in) {
        if(pre.length == 0||in.length == 0){
            return null;
        }
        TreeNode root = new TreeNode(pre[0]);
        for(int i = 0; i < in.length; i++){
            if(pre[0] == in[i]){
                root.left = reConstructBinaryTree(Arrays.copyOfRange(pre, 1, i+1), Arrays.copyOfRange(in, 0, i));
                root.right = reConstructBinaryTree(Arrays.copyOfRange(pre, i+1, pre.length), Arrays.copyOfRange(in, i+1,in.length));
            }
        }
        return root;
    }
}

5、用兩個棧來實現一個隊列,完成隊列的Push和Pop操作。 隊列中的元素爲int類型。

import java.util.Stack;

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

    public void push(int node) {
        stack1.push(node);
        stack2.empty();     
    }
    public int pop() {
        while(!stack1.isEmpty()){
            stack2.push(stack1.pop());
        }
        int pop =  stack2.pop();
        stack1.empty();
        while(!stack2.isEmpty()){
            stack1.push(stack2.pop());
        }
        return pop;
    }
}

6、把一個數組最開始的若干個元素搬到數組的末尾,我們稱之爲數組的旋轉。 輸入一個非減排序的數組的一個旋轉,輸出旋轉數組的最小元素。 例如數組{3,4,5,1,2}爲{1,2,3,4,5}的一個旋轉,該數組的最小值爲1。 NOTE:給出的所有元素都大於0,若數組大小爲0,請返回0。

import java.util.ArrayList;
public class Solution {
    public int minNumberInRotateArray(int [] array) {
        if (array.length == 0) {
             return 0;
         }
         for (int i=0; i<array.length-1; i++) {
             int tmp = array[i+1];
             if(tmp<array[i]){
                 return tmp;
             }
         }
         return array[0];
    }
}

7、大家都知道斐波那契數列,現在要求輸入一個整數n,請你輸出斐波那契數列的第n項(從0開始,第0項爲0)。
n<=39

public class Solution {
    public int Fibonacci(int n) {
        if(n == 1){
            return 1;
        }
        else if(n == 2){
            return 1;
        }
        else if (n>2){
            return Fibonacci(n-1)+Fibonacci(n-2);
        }
        else{
            return 0;
        }
    }
}

8、一隻青蛙一次可以跳上1級臺階,也可以跳上2級。求該青蛙跳上一個n級的臺階總共有多少種跳法(先後次序不同算不同的結果)。

public class Solution {
    public int JumpFloor(int target) {
        if(target == 1){
            return 1;
        }
        else if(target == 2){
            return 2;
        }
        else if(target >2){
            return JumpFloor(target-1)+JumpFloor(target-2);
        }
        else
            return 0;
    }
}

9、一隻青蛙一次可以跳上1級臺階,也可以跳上2級……它也可以跳上n級。求該青蛙跳上一個n級的臺階總共有多少種跳法。

public class Solution {
    public int JumpFloorII(int target) {
        if(target == 1){
            return 1;
        }
        else if(target > 1){
            return 2*JumpFloorII(target-1);
        }
        else{
            return 0;
        }
    }
}

10、我們可以用2*1的小矩形橫着或者豎着去覆蓋更大的矩形。請問用n個2*1的小矩形無重疊地覆蓋一個2*n的大矩形,總共有多少種方法?

public class Solution {
    public int RectCover(int target) {
        if(target == 1){
            return 1;
        }
        else if(target == 2){
            return 2;
        }
        else if(target > 2){
            return RectCover(target-1)+RectCover(target-2);
        }
        else
            return 0;
    }
}
發佈了67 篇原創文章 · 獲贊 32 · 訪問量 5萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章