目录
五、其他
9、链表回文结构
基本都是参考别的博客和书本的代码,仅作为自己笔记用!!
零、小结:
1、<< : 左移运算符,num << 1,相当于num乘以2
>> : 右移运算符,num >> 1,相当于num除以2
>>> : 无符号右移,忽略符号位,空位都以0补齐
2、//与1位与得1就是奇数,1只有最后一位是1
一、位运算
1、二进制中1的个数
输入一个整数,输出该数二进制表示中1的个数。其中负数用补码表示。
思路:最简单的思路,整数n每次进行无符号右移一位,同1做&运算,可以判断最后以为是否为1。
通常的剑指offer的思路,n&(n-1) 操作相当于把二进制表示中最右边的1变成0。所以只需要看看进行了多少次这样的操作即可。看看什么时候n为0.
-
public
class erjinzhi {
-
public int NumberOf1(int n) {
-
/*int count = 0; //自己的思路,主要就是n与2 4 8 16分别与,来判断
-
long temp = 1;
-
for(int i = 1; i <= 32;i++){
-
if((n&temp) > 0)
-
count++;
-
temp = temp * 2;
-
-
-
}
-
return count;*/
-
/* //简单的思路
-
int res = 0;
-
while (n!=0) {
-
res = res + n&1;
-
n>>>=1;
-
}
-
return res;*/
-
int count =
0;
-
while(n!=
0)
-
{
-
n = n&(n-
1);
-
count++;
-
}
-
return count;
-
-
}
-
}
-
2、判断二进制中0的个数
思路:每次右移一位,判断是否是0即可。暂时没有找到别的好思路。
-
public static int findZero(int n) {
-
int count =
0;
-
-
-
while(n !=
0) {
-
if((n&
1)!=
1)
-
count++;
-
n>>>=
1;
-
}
-
return count;
-
}
-
3.二进制高位连续0的个数
思路:每次与最高位为1的二进制进行&操作。0x80000000的二进制是1000 0000 0000 0000 ...共32位,最高位为1.
参考https://blog.csdn.net/u013190513/article/details/70216730
https://www.cnblogs.com/hongten/p/hongten_java_integer_toBinaryString.html
https://blog.csdn.net/lpjishu/article/details/51323722
-
public static int numberOfLeadingZeros0(int i){
-
if(i ==
0)
-
return
32;
-
int n =
0;
-
int mask =
0x80000000;
-
int j = i & mask;
-
while(j ==
0){
-
n++;
-
i <<=
1;
-
j = i & mask;
-
}
-
return n;
-
}
JDK中源码解决思路.
-
public static int numberOfLeadingZeros(int i) {
-
// HD, Figure
5-
6
-
if (i ==
0)
-
return
32;
-
int n =
1;
-
if (i
>>>
16 ==
0) { n +=
16; i <<=
16; }
-
if (i
>>>
24 ==
0) { n +=
8; i <<=
8; }
-
if (i
>>>
28 ==
0) { n +=
4; i <<=
4; }
-
if (i
>>>
30 ==
0) { n +=
2; i <<=
2; }
-
n -= i
>>>
31;
-
return n;
-
}
二、二叉树
-
1、二叉搜索树第k个结点
给定一颗二叉搜索树,请找出其中的第k小的结点。例如, 5 / \ 3 7 /\ /\ 2 4 6 8 中,按结点数值大小顺序第三个结点的值为4。
思路:递归的方式:二叉搜索树的中序遍历就是排序的,所以用中序遍历,每一次中间的时候判断是否等于k即可。
非递归的方式:运用栈进行操作。相当于用栈实现了中序遍历,在中间进行了个数的判断
-
int count =
0;
-
TreeNode KthNode(TreeNode pRoot, int k)
-
{
-
if(pRoot !=
null) {
-
TreeNode leftNode = KthNode(pRoot.left, k);
-
if(leftNode !=
null)
-
return leftNode;
-
count++;
-
if(count == k)
-
return pRoot;
-
TreeNode rightNode = KthNode(pRoot.right, k);
-
if(rightNode !=
null)
-
return rightNode;
-
}
-
return
null;
-
}
//栈的方式
-
TreeNode KthNode(TreeNode pRoot, int k)
-
{
-
Stack<TreeNode> stack =
new Stack<TreeNode>();
-
if(pRoot==
null||k==
0)
return
null;
-
int t=
0;
-
while(pRoot!=
null ||stack.size()>
0){
-
while(pRoot!=
null){
-
stack.push(pRoot);
-
pRoot = pRoot.left;
-
}
-
if(stack.size()>
0){
-
pRoot= stack.pop();
-
t++;
-
if(t==k)
return pRoot;
-
pRoot= pRoot.right;
-
}
-
}
-
return
null;
-
}
-
2.0 从上往下打印二叉树
从上往下打印出二叉树的每个节点,同层节点从左至右打印。
思路:
-
import java.util.ArrayList;
-
import java.util.LinkedList;
-
/**
-
public
class TreeNode {
-
int val =
0;
-
TreeNode
left =
null;
-
TreeNode
right =
null;
-
-
public TreeNode(
int val) {
-
this.val = val;
-
-
}
-
-
}
-
*/
-
public
class Solution {
-
/**
-
* 算法思路,(剑指offer图片)
-
*
1.根节点放到队列里面,队列不空,就打印队列头,打印这个节点,马上把这个节点的左右子节点放到队列中。
-
*
2.再要访问一个节点,把这个节点的左右放入,此时队头是同层的,对位是打印出来的左右。依次先入先出就可以得到结果。
-
* @param root
-
* @return
-
*/
-
public ArrayList<Integer> PrintFromTopToBottom(TreeNode root) {
-
ArrayList<Integer> layerList =
new ArrayList<Integer>();
-
if (root ==
null)
-
return layerList;
-
LinkedList<TreeNode> queue =
new LinkedList<TreeNode>();
-
queue.add(root);
-
while (!queue.
isEmpty()) {
-
TreeNode node = queue.poll();
-
layerList.add(node.val);
-
if (node.
left !=
null)
-
queue.addLast(node.
left);
-
if (node.
right !=
null)
-
queue.addLast(node.
right);
-
}
-
return layerList;
-
}
-
-
}
-
2.1二叉树打印成多行
从上到下按层打印二叉树,同一层结点从左至右输出。每一层输出一行。(注意是一行一行输出)
思路:主要采用左程云的思路,
-
static ArrayList<ArrayList<Integer> > Print(TreeNode pRoot) {
-
ArrayList<ArrayList<Integer>> res =
new ArrayList<>();
-
if(pRoot ==
null)
-
return res;
-
Queue<TreeNode> queue =
new LinkedList<TreeNode>();
-
TreeNode last = pRoot;
-
TreeNode nlast =
null;
-
queue.offer(pRoot);
-
ArrayList<Integer> tmp =
new ArrayList<>();
-
while (!queue.isEmpty()) {
-
pRoot = queue.poll();
-
tmp.
add(pRoot.val);
//出队列,就把他左右孩子入队列,
-
//此时,下一层的最右要跟着更新
-
if (pRoot.left!=
null) {
-
queue.offer(pRoot.left);
-
nlast = pRoot.left;
-
}
-
if (pRoot.right!=
null) {
-
queue.offer(pRoot.right);
-
nlast = pRoot.right;
-
}
-
//如果到了本层的最右,就把这一层结果放入。注意最后一层时,isempty不成立,
-
//最后一层的结果要单独放入。
-
if (pRoot == last && !queue.isEmpty()) {
-
res.
add(
new ArrayList<>(tmp));
-
last = nlast;
-
tmp.clear();
-
}
-
}
-
res.
add(
new ArrayList<>(tmp));
-
return res;
-
}
2.2按之字形顺序打印二叉树
题目描述
请实现一个函数按照之字形打印二叉树,即第一行按照从左到右的顺序打印,第二层按照从右至左的顺序打印,第三行按照从左到右的顺序打印,其他行以此类推。
利用两个栈的辅助空间分别存储奇数偶数层的节点,然后打印输出。或使用链表的辅助空间来实现,利用链表的反向迭实现逆序输出。
-
import java.util.ArrayList;
-
import java.util.Stack;
-
/*
-
public class TreeNode {
-
int val = 0;
-
TreeNode left = null;
-
TreeNode right = null;
-
-
public TreeNode(int val) {
-
this.val = val;
-
-
}
-
-
}
-
*/
-
public
class Solution {
-
//利用两个栈的辅助空间分别存储奇数偶数层的节点,然后打印输出。或使用链表的辅助空间来实现,利用链表的反向迭实现逆序输出。
-
public ArrayList<ArrayList<Integer> >
Print(TreeNode pRoot) {
-
ArrayList<ArrayList<Integer>> res =
new ArrayList<>();
-
if(pRoot ==
null)
-
return res;
-
Stack<TreeNode> s1 =
new Stack<>();
-
Stack<TreeNode> s2 =
new Stack<>();
-
s1.push(pRoot);
-
int level =
1;
-
while (!s1.
empty()||!s2.
empty()) {
-
if (level %
2 !=
0) {
-
ArrayList<Integer>
list =
new ArrayList<>();
-
while (!s1.
empty()) {
-
TreeNode node = s1.pop();
-
if (node!=
null) {
-
list.add(node.val);
-
s2.push(node.left);
//因为偶数层,先右后左,所以要先放左子树,栈
-
s2.push(node.right);
-
-
}
-
}
-
if (!
list.isEmpty()) {
-
res.add(
list);
-
level++;
-
}
-
}
-
else {
-
ArrayList<Integer>
list =
new ArrayList<>();
-
while (!s2.
empty()) {
-
TreeNode node = s2.pop();
-
if (node!=
null) {
-
list.add(node.val);
-
s1.push(node.right);
-
s1.push(node.left);
-
-
}
-
}
-
if (!
list.isEmpty()) {
-
res.add(
list);
-
level++;
-
}
-
}
-
}
-
return res;
-
}
-
-
}
-
3.数据流中位数
如何得到一个数据流中的中位数?如果从数据流中读出奇数个数值,那么中位数就是所有数值排序之后位于中间的数值。如果从数据流中读出偶数个数值,那么中位数就是所有数值排序之后中间两个数的平均值。
思路:主要是博客的代码,参考了左的部分分析。
创建优先级队列维护大顶堆和小顶堆两个堆,并且小顶堆的值都大于大顶堆的值。比如6,1,3,0,9,8,7,2则较小的部分大根堆是0,1,2,3 较大的部分小根堆是6,7,8,9.
具体思路:
1.本代码为了保证两个堆的尺寸差距最大为1,采用奇数个时候插到大根堆,偶数个插到小根堆。
2.当数据总数为偶数时,新加入的元素,应当进入小根堆(注意不是直接进入小根堆,而是经大根堆筛选后取大根堆中最大元素进入小根堆),要保证小根堆里面所有数都比大根堆的大。
3.当数据为奇数个时,按照相应的调整进入大根堆。
4.如果个数位奇数个,则大根堆堆顶为中位数,否则就是两个堆顶除以2.比如新加入三个,那么第一个在大,第二个在小,第三个可能在大。所以就是大根堆的堆顶。
* 插入有两种思路: 左采用第一种,本代码采用第二种
* 1:直接插入大堆中,之后若两堆尺寸之差大于1(也就是2),则从大堆中弹出堆顶元素并插入到小堆中
* 若两队之差不大于1,则直接插入大堆中即可。
* 2:奇数个数插入到大堆中,偶数个数插入到小堆中,
* 但是 可能会出现当前待插入的数比小堆堆顶元素大,此时需要将元素先插入到小堆,然后将小堆堆顶元素弹出并插入到大堆中
* 对于偶数时插入小堆的情况,一样的道理。why?
* 因为要保证最大堆的元素要比最小堆的元素都要小。
-
import java.util.Comparator;
-
import java.util.PriorityQueue;
-
-
public
class Shujuliumedian {
-
int count =
0;
-
PriorityQueue<Integer> minheap =
new PriorityQueue<>();
-
PriorityQueue<Integer> maxheap =
new PriorityQueue<>(
11,
new Comparator<Integer>() {
-
-
@Override
-
public int compare(Integer o1, Integer o2) {
-
// TODO Auto-generated method stub
-
-
return o2.compareTo(o1);
//o2大于o1返回1 ,否则返回-1
-
}
-
});
-
public void Insert(Integer num) {
-
count++;
-
if (count %
2 ==
0) {
//偶数进入小根堆,这个其实无所谓,定了一个平均分配的规则
-
//保证进入小根堆的元素要比大根堆最大的大,所以如果小调整
-
if (!maxheap.isEmpty() && num < maxheap.peek()) {
-
maxheap.offer(num);
-
num = maxheap.poll();
-
}
-
minheap.offer(num);
-
}
-
else {
//奇数进入大根堆
-
if (!minheap.isEmpty() && num > minheap.peek()) {
-
minheap.offer(num);
-
num = minheap.poll();
-
}
-
maxheap.offer(num);
-
}
-
}
-
-
public Double GetMedian() {
-
double median =
0;
-
if (count %
2 ==
1) {
-
median = maxheap.peek();
-
}
-
else
-
median = (minheap.peek()+maxheap.peek())/
2.0;
-
return median;
-
}
-
}
-
4.二叉树中和为某一值的路径
输入一颗二叉树的跟节点和一个整数,打印出二叉树中结点值的和为输入整数的所有路径。路径定义为从树的根结点开始往下一直到叶结点所经过的结点形成一条路径。(注意: 在返回值的list中,数组长度大的数组靠前)
思路: * 剑指offer思路 博客代码
* 代码步骤:一个链表记录路径,一个存放这个链表的链表记录最终的结果。
* 1.首先将根节点放入链表,target减去这个根节点
* 2.判断是否target同时是叶子节点,如果是就将当前的链表放在结果连表里
* 3.如果不是,就递归去访问左右子节点。
* 4.无论是找到没有,都要回退一步、
-
import java.util.ArrayList;
-
/**
-
public class TreeNode {
-
int val = 0;
-
TreeNode left = null;
-
TreeNode right = null;
-
-
public TreeNode(int val) {
-
this.val = val;
-
-
}
-
-
}
-
*/
-
public
class Solution {
-
private ArrayList<ArrayList<Integer>> listAll =
new ArrayList<ArrayList<Integer>>();
-
-
private ArrayList<Integer>
list =
new ArrayList<Integer>();
-
private ArrayList<ArrayList<Integer>> resultList =
new ArrayList<ArrayList<Integer>>();
-
/**
-
* 剑指offer思路
-
* 代码步骤:一个链表记录路径,一个存放这个链表的链表记录最终的结果。前序遍历去访问。先访问根,在递归在左右子树找。注意回退
-
* 1.首先将根节点放入链表,target减去这个根节点
-
* 2.判断是否target同时是叶子节点,如果是就将当前的链表放在结果连表里
-
* 3.如果不是,就递归去访问左右子节点。
-
* 4.无论是找到没有,都要回退一步、
-
* @param root
-
* @param target
-
* @return
-
*/
-
public ArrayList<ArrayList<Integer>> FindPath(TreeNode root,int target) {
-
if(root ==
null)
-
return resultList;
-
list.add(root.val);
-
target = target - root.val;
-
if(target ==
0 && root.left ==
null && root.right ==
null){
-
resultList.add(
new ArrayList<Integer>(
list));
-
}
-
else {
-
FindPath(root.left, target);
-
FindPath(root.right, target);
-
-
}
-
// 在返回父节点之前,在路径上删除该结点
-
list.remove(
list.size()
-1);
-
return resultList;
-
}
-
-
}
-
5.重建二叉树
输入某二叉树的前序遍历和中序遍历的结果,请重建出该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。例如输入前序遍历序列{1,2,4,7,3,5,6,8}和中序遍历序列{4,7,2,1,5,3,8,6},则重建二叉树并返回。
思路:剑指
-
/**
-
* Definition for binary tree
-
* public class TreeNode {
-
* int val;
-
* TreeNode left;
-
* TreeNode right;
-
* TreeNode(int x) { val = x; }
-
* }
-
*/
-
import java.util.Arrays;
-
-
public
class
Solution {
-
public TreeNode reConstructBinaryTree(int[] pre, int[] in) {
-
if (pre ==
null ||
in ==
null) {
-
return
null;
-
}
-
if (pre.length ==
0 ||
in.length ==
0) {
-
return
null;
-
}
-
if (pre.length !=
in.length) {
-
return
null;
-
}
-
TreeNode root =
new TreeNode(pre[
0]);
//第一个
-
for (
int i =
0; i <
in.length; i++) {
-
if (pre[
0] ==
in[i]) {
-
//pre的0往后数i个是左子树的,copyofrange包含前面的下标,不包含后面的下标
-
//in的i往前数i个是左子树的。
-
root.left = reConstructBinaryTree(Arrays.copyOfRange(pre,
1, i +
1), Arrays.copyOfRange(
in,
0, i));
-
//注意in是从i+1开始,因为i是现在的根,i+1开始才是右子树
-
root.right = reConstructBinaryTree(Arrays.copyOfRange(pre, i +
1, pre.length),
-
Arrays.copyOfRange(
in, i +
1,
in.length));
-
}
-
}
-
return root;
-
}
-
}
-
6.树的子结构
输入两棵二叉树A,B,判断B是不是A的子结构。(ps:我们约定空树不是任意一个树的子结构)
思路: //先从根开始再把左作为根,再把右作为根由本函数决定。把一个为根的时候的具体比对过程是第二个函数决定。
//从根可以认为是一颗树,从左子树开始又可以认为是另外一颗树,从右子树开始又是另外一棵树。
//本函数就是判断这一整颗树包不包含树2,如果从根开始的不包含,就从左子树作为根节点开始判断,
//再不包含从右子树作为根节点开始判断。
//是整体算法递归流程控制。
-
/**
-
public class TreeNode {
-
int val = 0;
-
TreeNode left = null;
-
TreeNode right = null;
-
-
public TreeNode(int val) {
-
this.val = val;
-
-
}
-
-
}
-
*/
-
public
class Solution {
-
//先从根开始再把左作为根,再把右作为根由本函数决定。把一个为根的时候的具体比对过程是第二个函数决定。
-
//从根可以认为是一颗树,从左子树开始又可以认为是另外一颗树,从右子树开始又是另外一棵树。
-
//本函数就是判断这一整颗树包不包含树2,如果从根开始的不包含,就从左子树作为根节点开始判断,
-
//再不包含从右子树作为根节点开始判断。
-
//是整体算法递归流程控制。
-
public boolean HasSubtree(TreeNode root1,TreeNode root2) {
-
boolean res =
false;
-
if (root1 !=
null && root2 !=
null) {
-
if(root1.
val == root2.
val){
-
res = doesTree1haveTree2(root1,root2);
-
}
-
if(!res)
-
{
-
res = HasSubtree(root1.left, root2);
-
}
-
if(!res)
-
{
-
res = HasSubtree(root1.right, root2);
-
}
-
}
-
return res;
-
}
-
//本函数,判断从当前的节点 ,开始两个树能不能对应上,是具体的比对过程
-
public boolean doesTree1haveTree2(TreeNode root1,TreeNode root2) {
-
if(root2 ==
null)
-
return
true;
-
if(root1 ==
null)
-
return
false;
-
if(root1.
val != root2.
val){
-
return
false;
-
}
-
//如果根节点可以对应上,那么就去分别比对左子树和右子树是否对应上
-
return doesTree1haveTree2(root1.left, root2.left) && doesTree1haveTree2(root1.right, root2.right);
-
}
-
}
-
7.二叉树的镜像
操作给定的二叉树,将其变换为源二叉树的镜像。
二叉树的镜像定义:源二叉树 8 / \ 6 10 / \ / \ 5 7 9 11 镜像二叉树 8 / \ 10 6 / \ / \ 11 9 7 5
-
/**
-
public
class TreeNode {
-
int val =
0;
-
TreeNode
left =
null;
-
TreeNode
right =
null;
-
-
public TreeNode(
int val) {
-
this.val = val;
-
-
}
-
-
}
-
*/
-
import java.util.Stack;
-
public
class Solution {
-
/**
-
* 算法步骤
-
*
1.节点为空直接返回
-
*
2.如果这个节点的左右子树不为空,就交换。
-
*
3.递归对这个节点的左子树进行求镜像。对这个节点的右子树求镜像。
-
* @param root
-
*/
-
public void Mirror(TreeNode root){
-
if (root ==
null) {
-
return;
-
}
-
if(root.
left !=
null || root.
right !=
null) {
-
TreeNode temp = root.
left;
-
root.
left = root.
right;
-
root.
right = temp;
-
Mirror(root.
left);
-
Mirror(root.
right);
-
}
-
-
}
-
/*
public void Mirror(TreeNode root) {
-
if (root ==
null) {
-
return;
-
}
-
Stack<TreeNode> stack =
new Stack<TreeNode>();
-
stack.push(root);
-
while (!stack.
isEmpty()) {
-
TreeNode node = stack.pop();
-
if (node.
left !=
null || node.
right !=
null) {
-
TreeNode temp = node.
left;
-
node.
left = node.
right;
-
node.
right = temp;
-
}
-
if(node.
left !=
null)
-
stack.push(node.
left);
-
if(node.
right !=
null)
-
stack.push(node.
right);
-
-
}
-
}*/
-
}
8、二叉搜素树的后序遍历序列
输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果。如果是则输出Yes,否则输出No。假设输入的数组的任意两个数字都互不相同。
-
public
class Solution {
-
/**二叉搜索树的性质:
-
* 所有左子树的节点小于根节点,所有右子树的节点值大于根节点的值。
-
* 算法步骤:
-
* 1.后序遍历的最后一个值为root,在前面的数组中找到第一个大于root值的位置。
-
* 2.这个位置的前面是root的左子树,右边是右子树。然后左右子树分别进行这个递归操作。
-
* 3.其中,如果右边子树中有比root值小的直接返回false
-
* @param sequence
-
* @return
-
*/
-
public boolean VerifySquenceOfBST(int [] sequence) {
-
if (sequence ==
null || sequence.length ==
0)
-
return
false;
-
return IsBST(sequence,
0, sequence.length -
1);
-
-
}
-
-
public boolean IsBST(int [] sequence, int start, int end) {
-
if(start >= end)
//注意这个条件的添加// 如果对应要处理的数据只有一个或者已经没
-
//有数据要处理(start>end)就返回true
-
return
true;
-
int index = start;
-
for (; index < end; index++) {
//寻找大于root的第一个节点,然后再分左右两部分
-
if(sequence[index] > sequence[end])
-
break;
-
}
-
for (
int i = index; i < end; i++) {
//若右子树有小于根节点的值,直接返回false
-
if (sequence[i] < sequence[end]) {
-
return
false;
-
}
-
}
-
return IsBST(sequence, start, index-
1) && IsBST(sequence, index, end-
1);
-
}
-
-
}
/*当案例为{4,6,7,5}的时候就可以看到:
-
(此时start为0,end为3)
-
一开始index处的值为1,左边4的是start为0,index-1为0,下一次递归的start和end是一样的,true!
-
右边,start为1,end-1为2,是{6,7}元素,下一轮递归是:
-
————7为root,index的值指向7,
-
————所以左边为6,start和index-1都指向6,返回true。
-
————右边index指向7,end-1指向6,这时候end > start!如果这部分还不返回true,下面的数组肯定超了 */
9、二叉搜索树与双向链表
题目描述
输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表。要求不能创建任何新的结点,只能调整树中结点指针的指向。
-
/**
-
public class TreeNode {
-
int val = 0;
-
TreeNode left = null;
-
TreeNode right = null;
-
-
public TreeNode(int val) {
-
this.val = val;
-
-
}
-
-
}
-
*/
-
public
class Solution {
-
/**二叉搜索树的中序遍历就是递增的排序,所以就运用中序遍历方法来做。
-
* 算法思想:
-
* 中序遍历的步骤,只不过在递归的中间部分不是输出节点值,而是调整指针指向。
-
* 10
-
* /\
-
* 5 12
-
* /\
-
* 4 7
-
* 步骤记住就行,第一次执行,到4的时候,head和resulthead都指向这个
-
* 指针调整的其中一步:4是head 5是pRootOfTree 然后调整head右指向5,5左指向4,然后5变成head就行了。
-
* @param pRootOfTree
-
* @return
-
*/
-
TreeNode head =
null;
-
TreeNode resultHead =
null;
//保存生成链表的头结点,便于程序返回
-
public TreeNode Convert(TreeNode pRootOfTree) {
-
ConvertSub(pRootOfTree);
-
return resultHead;
-
}
-
public void ConvertSub(TreeNode pRootOfTree) {
-
if(pRootOfTree ==
null)
-
return;
-
ConvertSub(pRootOfTree.left);
-
if(head ==
null){
-
head = pRootOfTree;
-
resultHead = pRootOfTree;
-
}
-
else {
-
head.right = pRootOfTree;
-
pRootOfTree.left = head;
-
head = pRootOfTree;
-
}
-
ConvertSub(pRootOfTree.right);
-
}
-
}
10、二叉树的深度
题目描述
输入一棵二叉树,求该树的深度。从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。
-
/**
-
public class TreeNode {
-
int val = 0;
-
TreeNode left = null;
-
TreeNode right = null;
-
-
public TreeNode(int val) {
-
this.val = val;
-
-
}
-
-
}
-
*/
-
public
class Solution {
-
// 注意最后加1,因为左右子树的深度大的+根节点的深度1
-
public int
TreeDepth(
TreeNode root) {
-
if(root == null)
-
return
0;
-
int
left =
TreeDepth(root.
left);
-
int
right =
TreeDepth(root.
right);
-
return
left >
right?
left +
1:
right+
1;
-
}
-
}
11、平衡二叉树
输入一棵二叉树,判断该二叉树是否是平衡二叉树
描述:如果某二叉树中任意节点的左右子树的深度相差不超过1,那么它就是一棵平衡二叉树。
-
public
class Solution {
-
// 注意使用全局变量
-
boolean isBalance =
true;
-
public boolean
IsBalanced_Solution(
TreeNode root) {
-
lengthOfTree(root);
-
return isBalance;
-
}
-
-
private int lengthOfTree(
TreeNode root) {
-
if (root == null)
-
return
0;
-
int
left = lengthOfTree(root.
left);
-
int
right = lengthOfTree(root.
right);
-
if (
Math.
abs(
left -
right) >
1)
-
isBalance =
false;
-
return
Math.
max(
left,
right) +
1;
-
-
}
-
}
第二种Better思路:从底向上判断,这样可以记录下一层的深度
-
public
class Solution {
-
public boolean IsBalanced(TreeNode root) {
-
int depth =
0;
-
return IsBalanced(root, depth);
-
}
-
-
public boolean IsBalanced(TreeNode root,
int depth) {
-
if (root ==
null) {
-
depth =
0;
-
return
true;
-
}
-
-
int
left =
0,
right =
0;
-
if (IsBalanced(root.
left,
left) && IsBalanced(root.
right,
right)) {
-
int diff =
left -
right;
-
if (diff <=
1 && diff >=
-1) {
-
depth =
1 + (
left >
right ?
left :
right);
-
return
true;
-
}
-
}
-
-
return
false;
-
}
-
}
12、二叉树的下一个节点
题目描述
给定一个二叉树和其中的一个结点,请找出中序遍历顺序的下一个结点并且返回。注意,树中的结点不仅包含左右子结点,同时包含指向父结点的指针。
-
/*
-
public class TreeLinkNode {
-
int val;
-
TreeLinkNode left = null;
-
TreeLinkNode right = null;
-
TreeLinkNode next = null;
-
-
TreeLinkNode(int val) {
-
this.val = val;
-
}
-
}
-
*/
-
public
class Solution {
-
/**参考左程云和有详解博客的思路,
-
* 主要分三种:
-
* 1.如果有右孩子,后继节点就是最左边的
-
* 2.如果没有右孩子,判断是否是父节点的左孩子,是的话,返回,不是继续网上找
-
* 3.找不到就是null
-
* @param pNode
-
* @return
-
*/
-
public TreeLinkNode GetNext(TreeLinkNode pNode)
-
{
-
if(pNode ==
null)
-
return
null;
-
// 如果有右子树,则找右子树的最左节点
-
if (pNode.right !=
null) {
-
pNode = pNode.right;
-
// 如果此时pNode没有左子树,那么它就是下一个结点 ,就是最左边的了
-
//如果有左子树,那就在左子树找最左边的
-
while(pNode.left !=
null)
-
pNode = pNode.left;
-
return pNode;
-
-
}
-
非跟结点,并且没有右子树
-
while(pNode.next !=
null) {
-
// 找到一个结点是该其父亲的左孩子 ,找到就是返回父节点作为后记
-
if (pNode.next.left == pNode)
-
return pNode.next;
-
//找不到这个左孩子的,就继续往上,next其实是parent
-
pNode = pNode.next;
-
}
-
return
null;
-
}
-
}
13、对称的二叉树
请实现一个函数,用来判断一颗二叉树是不是对称的。注意,如果一个二叉树同此二叉树的镜像是同样的,定义其为对称的。
-
/*
-
public class TreeNode {
-
int val = 0;
-
TreeNode left = null;
-
TreeNode right = null;
-
-
public TreeNode(int val) {
-
this.val = val;
-
-
}
-
-
}
-
*/
-
public
class Solution {
-
//利用递归进行判断,
-
//若左子树的左孩子等于右子树的右孩子且左子树的右孩子等于右子树的左孩子,
-
//并且左右子树节点的值相等,则是对称的。
-
boolean isSymmetrical(TreeNode pRoot)
-
{
-
if (pRoot ==
null)
-
return
true;
-
return isCommon(pRoot.left,pRoot.right);
-
}
-
public boolean isCommon(TreeNode leftNode, TreeNode rightNode) {
-
if (leftNode ==
null && rightNode ==
null)
-
return
true;
-
if (leftNode !=
null && rightNode !=
null) {
-
return leftNode.
val == rightNode.
val &&
-
isCommon(leftNode.left, rightNode.right) &&
-
isCommon(leftNode.right, rightNode.left);
-
}
-
return
false;
-
}
-
}
14、序列化二叉树
请实现两个函数,分别用来序列化和反序列化二叉树
这段代码是按照先序遍历的方法来做的:
-
/*
-
public class TreeNode {
-
int val = 0;
-
TreeNode left = null;
-
TreeNode right = null;
-
-
public TreeNode(int val) {
-
this.val = val;
-
-
}
-
-
}
-
*/
-
import java.util.LinkedList;
-
import java.util.Queue;
-
public
class Solution {
-
//主要运用左程云的编程思想的方式来实现
-
String Serialize(TreeNode root) {
-
if(root == null)
-
return
"#!";
-
String res = root.val+
"!";
-
res = res + Serialize(root.left);
-
res = res + Serialize(root.right);
-
return res;
-
}
-
-
TreeNode Deserialize(String str) {
-
String [] values = str.split(
"!");
-
Queue<String>
queue =
new LinkedList<String>();
-
for (
int i =
0; i < values.length; i++) {
-
queue.offer(values[i]);
-
}
-
return reconPre(
queue);
-
}
-
TreeNode reconPre(Queue<String> queue) {
-
String value =
queue.poll();
-
if(value.equals(
"#"))
-
return null;
-
TreeNode head =
new TreeNode(Integer.valueOf(value));
-
head.left = reconPre(
queue);
-
head.right = reconPre(
queue);
-
return head;
-
}
-
}
三、字符串
-
1.正则表达式的匹配
请实现一个函数用来匹配包括'.'和'*'的正则表达式。模式中的字符'.'表示任意一个字符,而'*'表示它前面的字符可以出现任意次(包含0次)。 在本题中,匹配是指字符串的所有字符匹配整个模式。例如,字符串"aaa"与模式"a.a"和"ab*ac*a"匹配,但是与"aa.a"和"ab*a"均不匹配。
思路:参考网上的思路,主要就是分程序中的两种情况来讨论。第二位是不是*
-
/*
-
当模式中的第二个字符不是“*”时:
-
1、如果字符串第一个字符和模式中的第一个字符相匹配,
-
那么字符串和模式都后移一个字符,然后匹配剩余的。
-
2、如果字符串第一个字符和模式中的第一个字符相不匹配,直接返回false。
-
而当模式中的第二个字符是“*”时:
-
如果字符串第一个字符跟模式第一个字符不匹配,则模式后移2个字符,继续匹配。
-
如果字符串第一个字符跟模式第一个字符匹配,可以有3种匹配方式:
-
1、模式后移2字符,相当于x*被忽略;
-
2、字符串后移1字符,模式后移2字符; 相当于x*算一次
-
3、字符串后移1字符,模式不变,即继续匹配字符下一位,因为*可以匹配多位,相当于算多次
-
这里需要注意的是:Java里,要时刻检验数组是否越界。*/
-
public
class Zhengze {
-
public boolean match(char[] str, char[] pattern) {
-
if (str ==
null || pattern ==
null) {
-
return
false;
-
}
-
int strIndex =
0;
-
int patternIndex =
0;
-
return matchCore(str, strIndex, pattern, patternIndex);
-
}
-
-
public boolean matchCore(char[] str, int strIndex, char[] pattern, int patternIndex) {
-
// 有效性检验:str到尾,pattern到尾,匹配成功
-
if (strIndex == str.length && patternIndex == pattern.length)
-
return
true;
-
// pattern先到尾,匹配失败
-
if (strIndex != str.length && patternIndex == pattern.length)
-
return
false;
-
// 模式第2个是*,且字符串第1个跟模式第1个匹配,分3种匹配模式;如不匹配,模式后移2位
-
if (patternIndex +
1 < pattern.length && pattern[patternIndex +
1] ==
'*') {
-
if ((strIndex != str.length && pattern[patternIndex] == str[strIndex])
-
|| (pattern[patternIndex] ==
'.' && strIndex != str.length)) {
-
return
// 模式后移2,视为x*匹配0个字符
-
matchCore(str, strIndex, pattern, patternIndex +
2)
-
// 视为模式匹配1个字符
-
|| matchCore(str, strIndex +
1, pattern, patternIndex +
2)
-
// *匹配1个,再匹配str中的下一个
-
|| matchCore(str, strIndex +
1, pattern, patternIndex);
-
-
}
else {
-
return matchCore(str, strIndex, pattern, patternIndex +
2);
-
}
-
}
// 模式第2个不是*,且字符串第1个跟模式第1个匹配,则都后移1位,否则直接返回false
-
if ((strIndex != str.length && pattern[patternIndex] == str[strIndex])
-
|| (pattern[patternIndex] ==
'.' && strIndex != str.length)) {
-
return matchCore(str, strIndex +
1, pattern, patternIndex +
1);
-
}
-
return
false;
-
}
-
}
-
2.表示数值的字符串
请实现一个函数用来判断字符串是否表示数值(包括整数和小数)。例如,字符串"+100","5e2","-123","3.1416"和"-1E-16"都表示数值。 但是"12e","1a3.14","1.2.3","+-5"和"12e+4.3"都不是。
思路:按照一定的规则,如果第一位是+或-,就后移一位。
如果是数字,索引后移,数字表示1.
如果是点,要判断至此点的数量和e的数量是否已经有了,因为java 中e要求后面为整数,如果有了肯定false。索引后移,dotnum增加。
如果是e,判断是否重复e,或者前面没有数字返回false。enum++, 索引++,此时还要判断最后一位是不是e或者+或者-,如果是false。
-
public
class StrexpressNum {
-
/*例子:
-
* 110 1a1 1.1.1 2.2 12e
-
*
-
* */
-
public static boolean isNumeric(char[] str) {
-
if(str ==
null)
-
return
false;
-
int length = str.length;
-
int dotNum =
0;
//记录点的数量
-
int index =
0;
//索引
-
int eNum =
0;
//记录e的数量
-
int num =
0;
//记录数字的数量
-
if (str[
0] ==
'+' || str[
0] ==
'-') {
-
index++;
-
}
-
while (index < length) {
-
if(str[index]>=
'0' && str[index]<=
'9') {
-
index++;
-
num =
1;
-
// .前面可以没有数字,所以不需要判断num是否为0
-
}
else
if(str[index]==
'.') {
-
// e后面不能有.,e的个数不能大于1.java科学计数要求aeb,b为整数
-
if(dotNum >
0 || eNum >
0)
-
return
false;
-
dotNum++;
-
index++;
-
}
else
if(str[index] ==
'e' || str[index] ==
'E') {
-
// 重复e或者e前面没有数字
-
if(eNum >
0 || num ==
0)
-
return
false;
-
eNum++;
-
index++;
-
// 符号不能在最后一位
-
if(index < length &&(str[index]==
'+'||str[index]==
'-'))
-
index++;
-
// 表示e或者符号在最后一位
-
if(index == length)
-
return
false;
-
}
else {
-
return
false;
-
}
-
-
}
-
return
true;
-
}
-
public static void main(String[] args) {
-
char [] str = {
'1',
'2',
'e'};
-
System.out.println(isNumeric(str));
-
-
}
-
}
或者用正则表达式来匹配:
[+-]? 表示+或者-出现0次或1次。[0-9]{0,}表示0到9出现0次或者更多次。()表示这个分组作为一个整体。 \\.?表示.出现0次或1次。[0-9]{1,}表示0到9出现1次或者多次。()表示一个分组。如果把两个分组去掉进行判断是不准确的。100匹配到[0-9]{1,}出错。
-
public boolean isNumeric(char[] str) {
-
String res = String.valueOf(str);
-
return res.matches(
"[+-]?[0-9]{0,}(\\.?[0-9]{1,})?([Ee][+-]?[0-9]{1,})?");
-
}
-
3.0第一个只出现一次的字符
题目描述
在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 -1(需要区分大小写).
-
import java.util.LinkedHashMap;
-
public
class Solution {
-
public int FirstNotRepeatingChar(String str) {
-