第一题 树的子结构
//树的子结构
public boolean hasSubtree(LinkNode root1,LinkNode root2) {
if(root1==null || root2 ==null) return false;
return isSubtree(root1,root2)||hasSubtree(root1.left,root2)|| hasSubtree(root1.right,root2);
}
private boolean isSubtree(LinkNode root1, LinkNode root2) {
// TODO Auto-generated method stub
if(root1==null || root2 ==null) return false;
if(root1.val!=root2.val) return false;
return isSubtree(root1.left,root2.left)&&isSubtree(root1.right,root2.right);
}
第二题 二叉树的镜像
注意swap的实现,因为要从root开始遍历,所以就从root开始交换
//树的镜像
public void mirrorTree(LinkNode root) {
if(root==null) return;
swap(root);
mirrorTree(root.left);
mirrorTree(root.right);
}
private void swap(LinkNode root) {
LinkNode t = root.left;
root.left = root.right;
root.right = t;
}
第三题 对称二叉树
对节点的左孩子与其兄弟节点右孩子的判断,以及对节点右孩子与其兄弟节点左孩子的判断
//对称二叉树
public static boolean isSyemetric(LinkNode root) {
if(root==null) return false;
return isSyemCore(root.left,root.right);
}
public static boolean isSyemCore(LinkNode t1, LinkNode t2){
if (t1 == null && t2 == null)
return true;
if (t1 == null || t2 == null)
return false;
if (t1.val != t2.val)
return false;
return isSyemCore(t1.left,t2.right)&&isSyemCore(t1.right,t2.left);
}
第四题 顺时针打印矩阵
参考https://blog.csdn.net/abc7845129630/article/details/52725397
逻辑比较清晰,绕着圈打印。但是没明白为啥在绕圈打印的里面加了对start位置的判断,实际注释掉这部分之后完全对结果没有影响。因为前面的PrintMatrixInCircle 已经对start做了判断
package com.lyc.dataautest;
public class PrintMatrixInCircle {
public static void printMatri(int[][] array) {
if (array == null)
return;
int start = 0;
while (start < array[0].length / 2 || start < array.length / 2) {
printcore(array, start);
start++;
}
}
public static void printcore(int[][] arr, int start) {
if (arr == null)
return;
int columns = arr[0].length;
int rows = arr.length;
int endx = columns - start - 1;
int endy = rows - start - 1;
for (int i = start; i <= endx; i++) {
System.out.print(arr[start][i] + " ");
}
//if (start < endy) {
for (int i = start + 1; i <= endy; i++) {
System.out.print(arr[i][endy] + " ");
}
//}
//if(start<endx&&start<endy) {
for(int i=endy-1;i>=start;i--) {
System.out.print(arr[endx][i] + " ");
}
//}
//if(start <endy){
for(int i =endy -1;i>=start+1;i--){
System.out.print(arr[i][start]+",");
}
//}
}
public static void main(String[] args) {
int[][] array = {{1,2,3,4},{5,6,7,8},{9,10,11,12},{13,14,15,16,17}};
printMatri(array);
}
}
第五题 包含 min 函数的栈
使用一个辅助栈来保存最小元素,这个解法简单不失优雅。设该辅助栈名字为minimum stack,其栈顶元素为当前栈中的最小元素。这意味着
要获取当前栈中最小元素,只需要返回minimum stack的栈顶元素即可。
每次执行push操作,检查push的元素是否小于或等于minimum stack栈顶元素。如果是,则也push该元素到minimum stack中。
当执行pop操作的时候,检查pop的元素是否与当前最小值相等。如果相同,则需要将改元素从minimum stack中pop出去。
第六题 栈的压入、弹出序列
【思路】借用一个辅助的栈,遍历压栈顺序,先讲第一个放入栈中,这里是1,然后判断栈顶元素是不是出栈顺序的第一个元素,这里是4,很显然1≠4,所以我们继续压栈,直到相等以后开始出栈,出栈一个元素,则将出栈顺序向后移动一位,直到不相等,这样循环等压栈顺序遍历完成,如果辅助栈还不为空,说明弹出序列不是该栈的弹出顺序。
举例:
入栈1,2,3,4,5
出栈4,5,3,2,1
首先1入辅助栈,此时栈顶1≠4,继续入栈2
此时栈顶2≠4,继续入栈3
此时栈顶3≠4,继续入栈4
此时栈顶4=4,出栈4,弹出序列向后一位,此时为5,,辅助栈里面是1,2,3
此时栈顶3≠5,继续入栈5
此时栈顶5=5,出栈5,弹出序列向后一位,此时为3,,辅助栈里面是1,2,3
….
依次执行,最后辅助栈为空。如果不为空说明弹出序列不是该栈的弹出顺序。
#############################################
实际写的时候测试数据始终不通过,过了半个小时才发现测试数据有问题,sign!!!!!
import java.util.Stack;
public class IsPopOrder {
public static boolean ispoporder(int[] inorder,int[] test) {
Stack<Integer> stack = new Stack<Integer>();
int popindex=0;
for(int i=0;i<inorder.length;i++) {
stack.push(inorder[i]);
System.out.println("stack peek:"+stack.peek());
while(!stack.isEmpty() && stack.peek()==test[popindex]) {
System.out.println("stack peek2:"+stack.peek());
stack.pop();
popindex++;
//System.out.println("stack peek3:"+stack.peek()+" popindex is:"+test[popindex]);
}
}
//System.out.println("stack peek4:"+stack.peek());
return stack.empty();
}
public static void main(String[] args) {
int[] inorder={1,2,3,4,5};
int[] test = {4,5,3,2,1};
if(ispoporder(inorder,test)){
System.out.println("yes, it is pop order");
}
}
}