剑指offer刷题记录 栈、递归、二叉搜素树

剑指Offer(五):用两个栈实现队列

入队:push的时候,栈A入队列
出队:pop的时候,如果栈B有值则pop,如果栈B无值则把A全push到B

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);
    }
    
    public int pop() {
        if(stack2.isEmpty()){
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
        }
        return stack2.pop();
    }
}

剑指Offer(二十):包含min函数的栈

import java.util.Stack;

public class Solution {
	Stack<Integer> dataStack = new Stack<Integer>();
	Stack<Integer> minStack = new Stack<Integer>();
    
        public void push(int node) {
		dataStack.push(node);
		if(minStack.isEmpty() || node < minStack.peek()){
			minStack.push(node);
		}
		else{
			minStack.push(minStack.peek());
		}
	}

	public void pop() {
		dataStack.pop();
		minStack.pop();
	}

	public int top() {
		return dataStack.peek();
	}

	public int min() {
		return minStack.peek();
	}
}

剑指Offer(二十一):栈的压入、弹出序列

import java.util.ArrayList;
import java.util.Stack;
public class Solution {
    public boolean IsPopOrder(int [] pushA,int [] popA) {
      /首先对边界条件进行判断
        if(pushA.length==0||popA.length==0){
            return false;
        }
        
        Stack<Integer> s=new Stack<Integer>();
        int popIndex=0;
        for(int i=0;i<pushA.length;i++){
            s.push(pushA[i]);
            while(!s.empty()&&s.peek()==popA[popIndex]){
                s.pop();
                popIndex++;
            }
        }
        
        return s.empty();
    }
}

递归:

剑指Offer(七):裴波那契数列

斐波那契 使用递归

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

//循环遍历

public class Solution {
    public int Fibonacci(int n) {
        if(n<0){
            return 0;
        }
        
        if(n==1){
            return 1;
        }
        
        int target=0;
        int one=0;
        int two=1;
        for(int i=2;i<=n;i++){
            target=one+two;
            one=two;
            two=target;
        }
        return target;
    }
}

剑指Offer(八):跳台阶

public class Solution {
    public int jumpFloor(int target) {
        if(target<0){
            return -1;
        }
        
        if(target==1){
            return 1;
        }
        
        if(target==2){
            return 2;
        }
        
        return jumpFloor(target-1)+jumpFloor(target-2);
    }
}
public class Solution {
    public int jumpFloor(int target) {
        if(target<0){
            return 0;
        }
        
        if(target==1){
            return 1;
        }
        
        if(target==2){
            return 2;
        }
        
        int result=0;
        int one =1;
        int two =2;
        for(int i=3;i<=target;i++){
            result=one+two;
            one=two;
            two=result;
        }
        return result;
    }
}

剑指Offer(九):变态跳台阶

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

变态跳台阶

剑指Offer(十):矩形覆盖

在这里插入图片描述

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

二叉搜索树

剑指Offer(二十三):二叉搜索树的后序遍历序列

采用分治法的思想,找到根结点、左子树的序列、右子树的序列,分别判断左右子序列是否为二叉树的后序序列。

由题意可得:

  1. 后序遍历序列的最后一个元素为二叉树的根节点;
  2. 二叉搜索树左子树上所有的结点均小于根结点、右子树所有的结点均大于根结点。

算法步骤如下:

  1. 找到根结点;
  2. 遍历序列,找到第一个大于等于根结点的元素i,则i左侧为左子树、i右侧为右子树;
  3. 我们已经知道i左侧所有元素均小于根结点,那么再依次遍历右侧,看是否所有元素均大于根结点;若出现小于根结点的元素,则直接返回false;若右侧全都大于根结点,则:
  4. 分别递归判断左/右子序列是否为后序序列;
public class Solution {
    public boolean VerifySquenceOfBST(int [] sequence) {
        /首先对边界条件进行判断
        if(sequence.length==0){
            return false;
        }
        /但只有一个元素
        if(sequence.length==1){
            return true;
        }
        
          return     ju(sequence,0,sequence.length-1);
    }
    
    public static boolean ju(int[] sequence,int low,int root){
        
        ///递归的结束条件
        if(low>=root){
            return true;
        }
        
        int i=root;
        /首先从后往前找,小于root的值
        while(i>low&&sequence[i-1]>sequence[root]){
            i--;
        }
        
        
        ///然后循环判断是否有大于root的值不符合规范
        for(int j=low;j<i;j++)
            if(sequence[j]>sequence[root])
                return false;
        
        ///如果符合条件则递归进行 
        return ju(sequence,low,i-1)&&ju(sequence,i,root-1);
  
    }
    
}

剑指Offer(二十六):二叉搜索树与双向链表

//这个思路比较容易理解,中序遍历+ 双向链表。

//直接用中序遍历
public class Solution {
    TreeNode head = null;
    TreeNode tail = null;
    public TreeNode Convert(TreeNode pRootOfTree) {
        ConvertSub(pRootOfTree);
        return head;
    }
    
    private void ConvertSub(TreeNode pRootOfTree) {
        if(pRootOfTree==null) return;
		ConvertSub(pRootOfTree.left);
		if (tail == null) {
			tail = pRootOfTree;
			head = pRootOfTree;
		} else {
			tail.right = pRootOfTree;
			pRootOfTree.left = tail;
			tail = pRootOfTree;
		}
		ConvertSub(pRootOfTree.right);
    }
}

剑指Offer(六十二):二叉搜索树的第k个结点

核心思想:基于中序遍历

方法一:使用ArrayList将数据存储起来,之后将,取出前K-1个数据

import java.util.ArrayList;
public class Solution {
    ArrayList<TreeNode> list=new ArrayList<TreeNode>(); 
    TreeNode KthNode(TreeNode pRoot, int k)
    {
        if(pRoot==null)
            return null;
       
        InOrder(pRoot);
        if(k<=0) return null;
        if(list.size()<k) return null;
        TreeNode node=list.get(k-1);
        return node;
        
    }
    
    
    public void InOrder(TreeNode node){
        if(node==null) return;
        InOrder(node.left);
        list.add(node);
        InOrder(node.right);
    }


}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值