Skip to content

zkm98/leetCode

Repository files navigation

leetCode

For the result and knowledge I have learned by myself or from others.

Hope to be useful for the later thing.

At the same time, I hope I could get used to using the git operations.

数组

这部分主要是针对数组知识的题目汇总

532.数组中的K-diff数对

这部分的知识是针对于树的知识   树是一种抽象数据类型(ADT)或是实现这种抽象数据类型的数据结构,用来模拟具有树状结构性质的数据集合。它是由 n(n>0)n(n>0)n(n>0) 个有限节点组成一个具有层次关系的集合。

把它叫做「树」是因为它看起来像一棵倒挂的树,也就是说它是根朝上,而叶朝下的。 它具有以下的特点:

  • 每个节点都只有有限个子节点或无子节点;
  • 没有父节点的节点称为根节点;
  • 每一个非根节点有且只有一个父节点;
  • 除了根节点外,每个子节点可以分为多个不相交的子树;
  • 树里面没有环路。

题目目录:

572.另一个树的子树

深度优先

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published