二叉树及其练习题

文章目录

  • 树概念及结构
    • 树的概念
    • 树的相关概念
    • 树的表示形式
    • 树的应用
  • 二叉树概念及结构
    • 概念
    • 两种特殊的二叉树
    • 二叉树的性质
    • 二叉树的存储
    • 二叉树的基本操作
      • 二叉树的遍历
      • 前中后序遍历递归实现
      • 二叉树的基本操作
    • 二叉树相关oj题

树概念及结构

树的概念

树是一种非线性的数据结构,它是由n(n>=0)个有限结点组成一个具有层次关系的集合。把它叫做树是因为它看起来像一棵倒挂的树,也就是说它是根朝上,而叶朝下的。

  • 有一个特殊的结点,称为根结点,根节点没有前驱结点
  • 除根节点外,其余结点被分成M(M>0)个互不相交的集合T1、T2、……、Tm,其中每一个集合Ti(1<= i m<= m)又是一棵子树。每棵子树的根结点有且只有一个前驱,可以有0个或多个后继
  • 因此,树是递归定义的。
  • 一棵n个结点的树有n-1条边

注意:树形结构中,子树之间不能有交集,除了根结点外每个结点有且仅有一个父结点,否则就不是树形结构

树的相关概念

在这里插入图片描述

  • 结点的度:一个结点含有子树的个数称为该结点的度; 如上图:A的度为6
  • 树的度:一棵树中,所有结点度的最大值称为树的度; 如上图:树的度为6
  • 叶子结点或终端结点:度为0的结点称为叶结点; 如上图:B、C、H、I…等节点为叶结点
  • 双亲结点或父结点:若一个结点含有子结点,则这个结点称为其子结点的父结点; 如上图:A是B的父结点
  • 孩子结点或子结点:若一个结点含有父结点,则这个结点称为其父结点的子结点; 如上图:B是A的孩子结点
  • 根结点:一棵树中,没有双亲结点的结点;如上图:A
  • 结点的层次:从根开始,根为第1层,根的子结点为第2层,以此类推
  • 树的深度:树从根结点开始往下数,叶子结点所在的最大层数,也就是树中结点的最大层次; 如上图:树的深度为4
  • 树的高度:深度定义是从上往下的,高度定义是从下往上的。(其实不用在意这个,反正树的深度高度怎么数都一样的)。可以看这篇
  • 非终端结点或分支结点:度不为0的结点; 如上图:D、E、F、G…等节点为分支结点
  • 兄弟结点:具有相同父结点的结点互称为兄弟结点; 如上图:B、C是兄弟结点
  • 堂兄弟结点:双亲在同一层的结点互为堂兄弟;如上图:H、I互为兄弟结点
  • 结点的祖先:从根到该结点所经分支上的所有结点;如上图:A是所有结点的祖先
  • 子孙:以某结点为根的子树中任一结点都称为该结点的子孙。如上图:所有结点都是A的子孙
  • 森林:由m(m>=0)棵互不相交的树组成的集合称为森林

树的表示形式

树结构相对线性表就比较复杂了,要存储表示起来就比较麻烦了,实际中树有很多种表示方式,如:双亲表示法,孩子表示法、孩子双亲表示法、孩子兄弟表示法等等。我们这里就简单的了解其中最常用的孩子兄弟表示法。

class Node {int value; // 树中存储的数据Node firstChild; // 第一个孩子引用Node nextBrother; // 下一个兄弟引用
}

在这里插入图片描述

树的应用

文件系统管理(目录和文件)

二叉树概念及结构

概念

一棵二叉树是结点的一个有限集合,该集合:

  1. 或者为空
  2. 或者是由一个根节点加上两棵别称为左子树和右子树的二叉树组成。

在这里插入图片描述
从上图可以看出:

  1. 二叉树不存在度大于2的结点
  2. 二叉树的子树有左右之分,次序不能颠倒,因此二叉树是有序树

对于任意的二叉树都是由以下几种情况复合而成的:
在这里插入图片描述

两种特殊的二叉树

  1. 满二叉树: 一棵二叉树,如果每层的结点数都达到最大值,则这棵二叉树就是满二叉树。也就是说,如果一棵二叉树的层数为K,且结点总数是 2 k 2^k 2k-1 ,则它就是满二叉树。
  2. 完全二叉树: 完全二叉树是效率很高的数据结构,完全二叉树是由满二叉树而引出来的。从上到下,从左向右依次存储。 要注意的是满二叉树是一种特殊的完全二叉树。
    在这里插入图片描述

二叉树的性质

  1. 若规定根结点的层数为1,则一棵非空二叉树的第i层上最多有 2 i − 1 2^{i-1} 2i1(i>0)个结点
  2. 若规定只有根结点的二叉树的深度为1,则深度为K的二叉树的最大结点数是 2 k − 1 2^k-1 2k1 (k>=0)
  3. 对任何一棵二叉树, 如果其叶结点个数为 n 0 n_0 n0, 度为2的非叶结点个数为 n 2 n_2 n2,则有 n 0 n_0 n0 n 2 n_2 n2+1,也就是度为0的结点永远比度为2的结点多一个

设度为1的非叶结点个数为n1

  • 一棵n个结点的树有n-1条边( n 1 n_1 n1+2 n 2 n_2 n2 = n-1)
  • n 0 n_0 n0+ n 1 n_1 n1+ n 2 n_2 n2=n

    得出 n 0 n_0 n0= n 2 n_2 n2+1
  1. 具有n个结点的完全二叉树的深度k为 l o g 2 ( n + 1 ) log_2(n+1) log2(n+1)向上取整
  2. 对于具有n个结点的完全二叉树,如果按照从上至下从左至右的顺序对所有节点从0开始编号,则对于序号为i的结点有:
  • 若i>0,父结点序号:(i-1)/2;i=0,则i为根结点编号,无父结点
  • 若2i+1<n,左孩子序号:2i+1
  • 若2i+2<n,右孩子序号:2i+2

练习题

1.某二叉树共有 399 个结点,其中有 199 个度为 2 的结点,则该二叉树中的叶子结点数为( )
A 不存在这样的二叉树
B 200
C 198
D 199

n 0 n_0 n0= n 2 n_2 n2+1=200,选B

2.在具有 2n 个结点的完全二叉树中,叶子结点个数为( )
A n
B n+1
C n-1
D n/2

在这里插入图片描述

  • 2n= n 0 n_0 n0+ n 1 n_1 n1+ n 2 n_2 n2
  • n 1 n_1 n1=1
  • n 0 n_0 n0 n 2 n_2 n2+1

所以 n 0 n_0 n0=n,选A

3.一个具有767个节点的完全二叉树,其叶子节点个数为()
A 383
B 384
C 385
D 386

在这里插入图片描述

  • 767= n 0 n_0 n0+ n 2 n_2 n2
  • n 0 n_0 n0 n 2 n_2 n2+1

得出 n 0 n_0 n0=384,选B

4.一棵完全二叉树的节点数为531个,那么这棵树的高度为( )
A 11
B 10
C 8
D 12

2 9 2^9 29=512 ; 2 10 2^{10} 210=1024
512<531+1<1024
所以9< l o g 2 ( 531 + 1 ) log_2(531+1) log2(531+1)<10
向上取整选10,也就是B

二叉树的存储

二叉树的链式存储是通过一个一个的节点引用起来的,常见的表示方式有二叉和三叉表示方式,具体如下:

// 孩子表示法
class Node {int val; // 数据域Node left; // 左孩子的引用,常常代表左孩子为根的整棵左子树Node right; // 右孩子的引用,常常代表右孩子为根的整棵右子树
}
// 孩子双亲表示法
class Node {int val; // 数据域Node left; // 左孩子的引用,常常代表左孩子为根的整棵左子树Node right; // 右孩子的引用,常常代表右孩子为根的整棵右子树Node parent; // 当前节点的根节点
}

二叉树的基本操作

二叉树的遍历

  1. 前中后序遍历

前序遍历(Preorder Traversal 亦称先序遍历)——根结点—>根的左子树—>根的右子树。
中序遍历(Inorder Traversal)——根的左子树—>根节点—>根的右子树。
后序遍历(Postorder Traversal)——根的左子树—>根的右子树—>根节点。

  1. 层序遍历

自上而下,自左至右逐层访问树的结点

练习题

1.某完全二叉树按层次输出(同一层从左到右)的序列为 ABCDEFGH 。该完全二叉树的前序序列为()
A: ABDHECFG B: ABCDEFGH C: HDBEAFCG D: HDEBFGCA

在这里插入图片描述
ABDHECFG,选A

2.二叉树的先序遍历和中序遍历如下:先序遍历:EFHIGJK;中序遍历:HFIEJKG.则二叉树根结点为()
A: E B: F C: G D: H

看先序遍历第一个,选A

3.设一课二叉树的中序遍历序列:badce,后序遍历序列:bdeca,则二叉树前序遍历序列为()
A: adbce B: decab C: debac D: abcde

在这里插入图片描述

选D

4.某二叉树的后序遍历序列与中序遍历序列相同,均为 ABCDEF ,则按层次输出(同一层从左到右)的序列为 ( )
A: FEDCBA B: CBAFED C: DEFCBA D: ABCDEF

在这里插入图片描述

选A

前中后序遍历递归实现

定义结点

static class TreeNode {public char val;public TreeNode left;public TreeNode right;public TreeNode(char val) {this.val = val;}}
  • 前序遍历
public void preOrder(TreeNode root) {if(root == null) {return;//空树是不需要遍历的}System.out.print(root.val+" ");preOrder(root.left);preOrder(root.right);}
  • 中序遍历
public void inOrder(TreeNode root) {if(root == null) {return;}inOrder(root.left);System.out.print(root.val+" ");inOrder(root.right);}
  • 后序遍历
public void postOrder(TreeNode root) {if(root == null) {return;}postOrder(root.left);postOrder(root.right);System.out.print(root.val+" ");}

二叉树的基本操作

1.获取树中节点的个数

  • 用递归外的变量存储个数,采用前序遍历的方法,前序遍历是打印,这次是计数
	 public static int nodeSize;public void size(TreeNode root) {if(root == null) {return;}nodeSize++;size(root.left);size(root.right);}
  • 子问题思路
 	public int size(TreeNode root) {if(root == null) {return 0;}int count = size(root.left) +size(root.right)+1;return count;}

2.获取叶子节点的个数

  • 用递归外的变量存储个数,也是前序遍历的方法
	public int leafSize;public void getLeafNodeCount(TreeNode root) {if(root == null) {return;}if(root.left == null && root.right == null) {leafSize++;}getLeafNodeCount(root.left);getLeafNodeCount(root.right);}
  • 子问题思路
	public int getLeafNodeCount2(TreeNode root) {if(root == null) {return 0;}	if(root.left == null && root.right == null) {return 1;}return getLeafNodeCount2(root.left)+ getLeafNodeCount2(root.right);}
  1. 获取第K层节点的个数
 	public int getKLevelNodeCount(TreeNode root,int k) {if(root == null) {return 0;}if(k == 1) {return 1;}return getKLevelNodeCount(root.left,k-1)+getKLevelNodeCount(root.right,k-1);}

4.获取二叉树的深度(oj题链接)

  • 推荐这种
 public int maxDepth(TreeNode root) {if(root == null) {return 0;}int leftHeight = maxDepth(root.left);int rightHeight = maxDepth(root.right);return Math.max(leftHeight,rightHeight) + 1;}
  • 不推荐,没有保存leftHeight和rightHeight,会重复计算
 public int maxDepth(TreeNode root) {if(root == null) {return 0;}return (maxDepth(root.left) >  maxDepth(root.right)? maxDepth(root.left) :  maxDepth(root.right)) + 1;}

5.检测值为value的元素是否存在

 public TreeNode find(TreeNode root,int val) {if(root == null) return null;if(root.val == val) return root;TreeNode leftVal = find(root.left,val);if(leftVal != null) {return leftVal;}TreeNode rightVal = find(root.right,val);if(rightVal != null) {return rightVal;}return null;}

二叉树相关oj题

  1. 检查两颗树是否相同oj链接
class Solution {public boolean isSameTree(TreeNode p, TreeNode q) {if (p == null && q == null) return true;if (p == null || q == null) return false;if(p.val != q.val) return false;return isSameTree(p.left,q.left)&&isSameTree(p.right,q.right);}
}
  1. 另一颗树的子树oj链接
class Solution {public boolean isSameTree(TreeNode p, TreeNode q) {if (p == null && q == null) return true;if (p == null || q == null) return false;if(p.val != q.val) return false;return isSameTree(p.left,q.left)&&isSameTree(p.right,q.right);}public boolean isSubtree(TreeNode root, TreeNode subRoot) {if(subRoot == null) return true;if(root == null) return false;if(isSameTree(root,subRoot)) {return true;}if(isSubtree(root.left,subRoot)) {return true;}if(isSubtree(root.right,subRoot)) {return true;}return false;}
}
  1. 翻转二叉树oj链接
class Solution {public TreeNode invertTree(TreeNode root) {if(root == null) return null;//if(root.left == null && root.right == null) return root;TreeNode tmp = root.left;root.left = root.right;root.right = tmp;invertTree(root.left);invertTree(root.right);return root;}
}
  1. 判断一颗二叉树是否是平衡二叉树oj链接

(1) 时间复杂度(O( n 2 n^2 n2))

class Solution {public boolean isBalanced(TreeNode root) {if(root==null) {return true;}int leftH = getHeight(root.left);int rightH = getHeight(root.right);if(Math.abs(leftH-rightH)<2&&isBalanced(root.left)&& isBalanced(root.right)) {return true;} return false;}public int getHeight(TreeNode root) {if(root==null) {return 0;}int leftHeight = getHeight(root.left);int rightHeight = getHeight(root.right);return Math.max(leftHeight,rightHeight)+1; }
}

(2)

class Solution {public boolean isBalanced(TreeNode root) {if(root==null) {return true;}return getHeight(root) >= 0;}public int getHeight(TreeNode root) {if(root==null) {return 0;}int leftHeight = getHeight(root.left);if(leftHeight == -1) {return -1;}int rightHeight = getHeight(root.right);if(rightHeight == -1) {return -1;}if(Math.abs(leftHeight-rightHeight)<=1) {return Math.max(leftHeight,rightHeight)+1;} else {//不平衡就返回-1return -1;}}
}
  1. 对称二叉树oj链接
class Solution {public boolean isSymmetric(TreeNode root) {if(root == null) {return true;}return isSymmetricChild(root.left,root.right);}public boolean isSymmetricChild(TreeNode leftTree,TreeNode rightTree) {//1.结构上的判断if(leftTree == null && rightTree != null || leftTree != null && rightTree == null) {return false;}if(leftTree == null && rightTree == null) {return true;}//2.值if(leftTree.val != rightTree.val) {return false;}return isSymmetricChild(leftTree.left,rightTree.right) &&isSymmetricChild(leftTree.right,rightTree.left);}
}
  1. 二叉树的构建及遍历oj链接
import java.util.Scanner;
class TreeNode {public char val;public TreeNode left;public TreeNode right;public TreeNode(char val) {this.val = val;}
}public class Main {public static void main(String[] args) {Scanner in = new Scanner(System.in);while (in.hasNextLine()) {String str = in.nextLine();Main main = new Main();TreeNode root = main.createTree(str);inoeder(root);}}int i = 0;TreeNode createTree(String str) {TreeNode root = null;char ch = str.charAt(i);if(ch != '#') {root = new TreeNode(ch);i++;root.left = createTree(str);root.right = createTree(str);} else {i++;}return root;}public static void inoeder(TreeNode root) {if(root == null) {return;}inoeder((root.left));System.out.print(root.val+" ");inoeder(root.right);}
} 
  1. 二叉树的分层遍历oj链接
class Solution {public List<List<Integer>> levelOrder(TreeNode root) {List<List<Integer>> retList = new ArrayList<>();if(root == null) return retList;Queue<TreeNode> queue = new LinkedList<>();queue.offer(root);while(!queue.isEmpty()) {int size = queue.size();List<Integer> list = new ArrayList<>();while(size != 0) {TreeNode cur = queue.poll();list.add(cur.val);size--;if(cur.left!=null) {queue.offer(cur.left);}if(cur.right != null) {queue.offer(cur.right);}}retList.add(list);} return retList;}
}

判断是不是完全二叉树

1.先把根节点放到队列中
2.队列不为空,弹出元素,放入左孩子右孩子(可以为空)
3.当队列弹出元素为null时停止
4.最后判断当前队列的元素是否都是null.只要出现不为null的元素,则当前二叉树不是完全二叉树

public boolean isCompleteTree(TreeNode root) {if(root == null) return true;Queue<TreeNode> queue = new LinkedList<>();queue.offer(root);while(!queue.isEmpty()) {TreeNode cur = queue.poll();if(cur != null) {queue.offer(cur.left);queue.offer(cur.right);} else {break;}}while (!queue.isEmpty()) {TreeNode cur = queue.poll();if(cur != null) {return false;}}return true;}
  1. 给定一个二叉树, 找到该树中两个指定节点的最近公共祖先oj链接

(1)递归

class Solution {public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {if(root==null) return root;if(root == p || root == q) return root;TreeNode left = lowestCommonAncestor(root.left,p,q);TreeNode right = lowestCommonAncestor(root.right,p,q);if(left != null&&right != null) return root;else if(left != null) return left;else return right;}
}

(2) 用两个栈分别存储根节点到q和p的路径,先将路径长度变得一样,由于栈后进先出,遇到一样的结点就是最近公共祖先

class Solution {public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {if(root == null) return null;Stack<TreeNode> stack1 = new Stack<>();Stack<TreeNode> stack2 = new Stack<>();getPath(root,p,stack1);getPath(root,q,stack2);int size1 = stack1.size();int size2 = stack2.size();if(size1 > size2) {int size = size1-size2;while(size != 0) {stack1.pop();size--;}} else {int size = size2-size1;while(size != 0) {stack2.pop();size--;}}while(!stack1.isEmpty()) {if(stack1.peek().equals(stack2.peek())) {return stack1.pop();} else {stack1.pop();stack2.pop();}}return null;}public boolean getPath(TreeNode root, TreeNode node, Stack<TreeNode> stack) {if(root==null) return false;stack.push(root);if(root == node) return true;boolean flgleft = getPath(root.left, node, stack );if(flgleft) return true;boolean flgright = getPath(root.right, node, stack );if(flgright) return true;stack.pop();return false;}
}
  1. 根据一棵树的前序遍历与中序遍历构造二叉树oj链接
class Solution {public int preIndex;public TreeNode buildTree(int[] preorder, int[] inorder) {return buildTreeChild(preorder, inorder, 0, inorder.length-1);}private TreeNode buildTreeChild(int[] preorder, int[] inorder,int inBegin, int inEnd) {if(inBegin > inEnd) {return null;}TreeNode root = new TreeNode(preorder[preIndex]);int rootIndex = findRootIndex(inorder,inBegin,inEnd,preorder[preIndex]);preIndex++;root.left = buildTreeChild(preorder, inorder, inBegin, rootIndex-1);root.right = buildTreeChild(preorder, inorder, rootIndex+1, inEnd);return root;}private int findRootIndex(int[] inorder, int inBegin, int inEnd,int key) {for(int i= inBegin; i <= inEnd; i++) {if(inorder[i] == key) {return i;}}return -1;}
}
  1. 根据一棵树的中序遍历与后序遍历构造二叉树oj链接
class Solution {public int postIndex;public TreeNode buildTree(int[] inorder, int[] postorder) {postIndex = postorder.length-1;return buildTreeChild(postorder, inorder, 0, inorder.length-1);}private TreeNode buildTreeChild(int[] postorder, int[] inorder,int inBegin, int inEnd) {if(inBegin > inEnd) {return null;}TreeNode root = new TreeNode(postorder[postIndex]);int rootIndex = findRootIndex(inorder,inBegin,inEnd,postorder[postIndex]);postIndex--;root.right = buildTreeChild(postorder, inorder, rootIndex+1, inEnd);root.left = buildTreeChild(postorder, inorder, inBegin, rootIndex-1);return root;}private int findRootIndex(int[] inorder, int inBegin, int inEnd,int key) {for(int i= inBegin; i <= inEnd; i++) {if(inorder[i] == key) {return i;}}return -1;}
}
  1. 二叉树创建字符串oj链接
class Solution {public String tree2str(TreeNode root) {StringBuilder sbu = new StringBuilder();tree2strChild(root,sbu);return sbu.toString();}public void tree2strChild(TreeNode root, StringBuilder sbu) {if(root == null) {return;}sbu.append(root.val);if(root.left != null) {sbu.append("(");tree2strChild(root.left,sbu);sbu.append(")");} else {if(root.right == null) {return;} else {sbu.append("()");}}if(root.right != null) {sbu.append("(");tree2strChild(root.right,sbu);sbu.append(")");} else {return;}}
}
  1. 二叉树前序非递归遍历实现oj链接

(1)用栈
时间复杂度:O(n)
空间复杂度:O(n)

class Solution {public List<Integer> preorderTraversal(TreeNode root) {List<Integer> list = new ArrayList<>();if(root == null) {return list;}Stack<TreeNode> stack = new Stack<>();TreeNode cur = root;while(cur != null || !stack.isEmpty()) {while(cur != null) {stack.push(cur);list.add(cur.val);cur = cur.left;}TreeNode top = stack.pop();cur = top.right;}return list;}
}

(2)Morris 遍历

时间复杂度:O(n)
空间复杂度:O(1)

class Solution {public List<Integer> preorderTraversal(TreeNode root) {List<Integer> res = new ArrayList<Integer>();if (root == null) {return res;}TreeNode p1 = root, p2 = null;while (p1 != null) {p2 = p1.left;if (p2 != null) {while (p2.right != null && p2.right != p1) {p2 = p2.right;}if (p2.right == null) {res.add(p1.val);p2.right = p1;p1 = p1.left;continue;} else {p2.right = null;}} else {res.add(p1.val);}p1 = p1.right;}return res;}
}
  1. 二叉树中序非递归遍历实现oj链接
class Solution {public List<Integer> inorderTraversal(TreeNode root) {List<Integer> list = new ArrayList<>();if(root == null) {return list;}Stack<TreeNode> stack = new Stack<>();TreeNode cur = root;while(cur != null || !stack.isEmpty()) {while(cur!=null) {stack.push(cur);cur = cur.left;}TreeNode top = stack.pop();list.add(top.val);cur = top.right;}return list;}
}
  1. 二叉树后序非递归遍历实现oj链接
class Solution {public List<Integer> postorderTraversal(TreeNode root) {List<Integer> list = new ArrayList<>();if(root == null) {return list;}Stack<TreeNode> stack = new Stack<>();TreeNode cur = root;TreeNode prev = null;while(cur != null || !stack.isEmpty()) {while(cur!=null) {stack.push(cur);cur = cur.left;}TreeNode top = stack.peek();if(top.right == null || top.right == prev) {stack.pop();list.add(top.val);prev = top;} else {cur = top.right;}}return list;}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/692875.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

c++:蓝桥杯中的基础算法1(枚举,双指针)

枚举 基础概念&#xff1a; 枚举&#xff08;Enum&#xff09;是一种用户定义的数据类型&#xff0c;用于定义一个有限集合的命名常量。在C中&#xff0c;枚举类型可以通过关键字enum来定义。 下面是一个简单的枚举类型的定义示例&#xff1a; #include <iostream>enum…

【面试题】谈谈MySQL的索引

索引是啥 可以把Mysql的索引看做是一本书的目录&#xff0c;当你需要快速查找某个章节在哪的时候&#xff0c;就可以利用目录&#xff0c;快速的得到某个章节的具体的页码。Mysql的索引就是为了提高查询的速度&#xff0c;但是降低了增删改的操作效率&#xff0c;也提高了空间…

医疗在线问诊小程序:开启数字化医疗新篇章

随着科技的飞速发展&#xff0c;医疗行业正逐步向数字化转型。其中&#xff0c;医疗在线问诊小程序作为一种新型的医疗健康服务模式&#xff0c;为人们提供了更为便捷、高效的医疗咨询服务。本文将探讨医疗在线问诊小程序的发展背景、优势及应用场景&#xff0c;以期为医疗行业…

【HarmonyOS应用开发】三方库(二十)

三方库的基本使用 一、如何获取三方库 目前提供了两种途径获取开源三方库&#xff1a; 通过访问Gitee网站开源社区获取 在Gitee中&#xff0c;搜索OpenHarmony-TPC仓库&#xff0c;在tpc_resource中对三方库进行了资源汇总&#xff0c;可以供开发者参考。 通过OpenHarmony三…

小程序--模板语法

一、插值{{}}语法 1、内容绑定 <view>{{iptValue}}</view> 2、属性绑定 <switch checked"{{true}}" /> Page({data: {iptValue: 123} }) 二、简易双向数据绑定 model:value&#xff1a;支持双向数据绑定 注&#xff1a;仅input和textarea支持&a…

【Algorithms 4】算法(第4版)学习笔记 09 - 3.2 二叉查找树

文章目录 前言参考目录学习笔记1&#xff1a;二叉树与二叉搜索树定义1.1&#xff1a;二叉树定义1.2&#xff1a;二叉搜索树定义1.3&#xff1a;Java定义1.4&#xff1a;BST基本实现1.5&#xff1a;BST demo 演示1.5.1&#xff1a;节点搜索成功命中演示1.5.2&#xff1a;节点搜索…

SpringBoot+WebSocket实现即时通讯(二)

前言 紧接着上文《SpringBootWebSocket实现即时通讯&#xff08;一&#xff09;》 本博客姊妹篇 SpringBootWebSocket实现即时通讯&#xff08;一&#xff09;SpringBootWebSocket实现即时通讯&#xff08;二&#xff09;SpringBootWebSocket实现即时通讯&#xff08;三&…

第3.1章:StarRocks数据导入——Insert into 同步模式

一、概述 在StarRocks中&#xff0c;insert的语法和mysql等数据库的语法类似&#xff0c;并且每次insert into操作都是一次完整的导入事务。 主要的 insertInto 命令包含以下两种&#xff1a; insert into tbl select ...insert into tbl (col1, col2, ...) values (1, 2, ...…

day02_java基础_变量_数据类型等

零、今日内容 1 HelloWorld程序 2 idea使用 3 变量 4 数据类型 5 String 一、复习 班规班纪。。。。。 安装jdk JDK 是开发工具 JRE 是运行代码 JDK包含JRE 配置环境变量 二、HelloWorld程序 前提&#xff1a;JDK已经安装配置完毕&#xff0c;有了这些环境就敲代码 代码…

Vue路由组件练习

Vue 路由组件练习 1. 演示效果 2. 代码分析 2.1. 安装 vue-router 命令&#xff1a;npm i vue-router 应用插件&#xff1a;Vue.use(VueRouter) 2.2. 创建路由文件 在 src 文件夹下&#xff0c;创建router文件夹&#xff0c;并在该文件夹创建index.js文件 2.3. 导入依赖…

普中51单片机学习(定时器和计数器)

定时器和计数器 51单片机有两组定时器/计数器&#xff0c;因为既可以定时&#xff0c;又可以计数&#xff0c;故称之为定时器/计数器。定时器/计数器和单片机的CPU是相互独立的。定时器/计数器工作的过程是自动完成的&#xff0c;不需要CPU的参与。51单片机中的定时器/计数器是…

<网络安全>《43 网络攻防专业课<第九课 - 跨站脚本攻击及防范>》

1 什么是XSS XSS(cross site script)或者说跨站脚本是一种Web应用程序的漏洞&#xff0c;恶意攻击者往Web页面里插入恶意Script代码&#xff0c;当用户浏览该页之时&#xff0c;嵌入其中Web里面的Script代码会被执行&#xff0c;从而达到恶意攻击用户的目的。 2 XSS脚本实例 …

城市智能交通指挥中心系统方案

二、方案设计 1.简介 公路治安卡口子系统实现对交通流信息的及时采集和各类嫌疑车辆的查控与处置&#xff0c;扼制并打击一些显见性违规违法行为。其主要功能包括&#xff1a;车辆图像记录、速度测定、车辆号牌识别、自动报警、数据检索、流量统计、图像存贮、数据传输和远程…

在前后端分离项目中如何设置统一返回格式

目录 一、步骤一 二、步骤二 在前后端分离的项目中&#xff0c;为了方便前后端交互&#xff0c;后端往往需要给前端返回固定的数据格式&#xff0c;但不同的实体类返回格式不同&#xff0c;所以在真实开发中&#xff0c;我们将所有API接口设置返回统一的格式。基本上包括的有…

【vue3】手动实现md在线编辑

1.背景 由于知识库的一些.md格式的文件的文件内容可能会有变动&#xff0c;如果频繁下载修改后&#xff0c;再进行上传&#xff0c;会让用户操作不方便&#xff0c;为此接入md在线编辑功能 2 md在线编辑具体实现 2.1 搭建项目 搭建项目下载和引入bytemd和fflate相关依赖&…

【深度优先搜索】【树】【状态压缩】2791. 树中可以形成回文的路径数

作者推荐 【深度优先搜索】【树】【有向图】【推荐】685. 冗余连接 II 本文涉及知识点 深度优先搜索 树 图论 状态压缩 LeetCode:2791. 树中可以形成回文的路径数 给你一棵 树&#xff08;即&#xff0c;一个连通、无向且无环的图&#xff09;&#xff0c;根 节点为 0 &am…

lv15 I2C背景知识(裸机I2C、linux对I2C支持、MPU6050)4

一、I2C总线背景知识 SOC芯片平台的外设分为&#xff1a; 一级外设&#xff1a;外设控制器集成在SOC芯片内部 二级外设&#xff1a;外设控制器由另一块芯片负责&#xff0c;通过一些通讯总线与SOC芯片相连 Inter-Integrated Circuit&#xff1a; 字面意思是用于“集成电路之…

css实现悬浮卡片

结果展示 html代码 <!doctype html> <html lang"zh"> <head><meta charset"UTF-8"><meta http-equiv"X-UA-Compatible" content"IEedge,chrome1"> <meta name"viewport" content"…

Android Studio创建项目时gradle下载慢

先停止当前Sync&#xff0c;找到gradle-wrapper.properties文件&#xff0c;将distributionUrl修改为腾讯镜像源&#xff1a; distributionUrlhttps\://mirrors.cloud.tencent.com/gradle/gradle-6.5-bin.zip

Vue 使用 v-bind 动态绑定 CSS 样式

在 Vue3 中&#xff0c;可以通过 v-bind 动态绑定 CSS 样式。 语法格式&#xff1a; color: v-bind(数据); 基础使用&#xff1a; <template><h3 class"title">我是父组件</h3><button click"state !state">按钮</button&…