1. 程式人生 > >劍指Offer【1-10】Java實現

劍指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;
    }
}