通过先序和中序寻找两个结点的最近共同祖先。
The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants.
Given any two nodes in a binary tree, you are supposed to find their LCA.
The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants.
Given any two nodes in a binary tree, you are supposed to find their LCA.
A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:
Given the structure of a binary tree and a sequence of distinct integer keys, there is only one way to fill these keys into the tree so that the resulting tree satisfies the definition of a BST. You are supposed to output the level order traversal sequence of that tree. The sample is illustrated by Figure 1 and 2.
A traveler’s map gives the distances between cities along the highways, together with the cost of each highway. Now you are supposed to write a program to help a traveler to decide the shortest path between his/her starting city and the destination. If such a shortest path is not unique, you are supposed to output the one with the minimum cost, which is guaranteed to be unique.
Given a singly linked list, you are supposed to rearrange its elements so that all the negative values appear before all of the non-negatives, and all the values in [0, K] appear before all those greater than K. The order of the elements inside each class must not be changed. For example, given the list being 18 → 7 → -4 → 0 → 5 → -6 → 10 → 11 → -2 and K being 10, you must output -4 → -6 → -2 → 7 → 0 → 5 → 10 → 18 → 11.
Suppose that all the keys in a binary tree are distinct positive integers. A unique binary tree can be determined by a given pair of postorder and inorder traversal sequences. And it is a simple standard routine to print the numbers in level-order. However, if you think the problem is too simple, then you are too naive. This time you are supposed to print the numbers in “zigzagging order” – that is, starting from the root, print the numbers level-by-level, alternating between left to right and right to left. For example, for the following tree you must output: 1 11 5 8 17 12 20 15.
Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, for each value K, only the first node of which the value or absolute value of its key equals K will be kept. At the mean time, all the removed nodes must be kept in a separate list. For example, given L being 21 → -15 → -15 → -7 → 15, you must output 21 → -15 → -7, and the removed list -15 → 15.
Mice and Rice is the name of a programming contest in which each programmer must write a piece of code to control the movements of a mouse in a given map. The goal of each mouse is to eat as much rice as possible in order to become a FatMouse.
First the playing order is randomly decided for programmers. Then every N_G programmers are grouped in a match. The fattest mouse in a group wins and enters the next turn. All the losers in this turn are ranked the same. Every NG winners are then grouped in the next match until a final winner is determined.
For the sake of simplicity, assume that the weight of each mouse is fixed once the programmer submits his/her code. Given the weights of all the mice and the initial playing order, you are supposed to output the ranks for the programmers.
Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S_1 = { 11, 12, 13, 14 } is 12, and the median of S_2 = { 9, 10, 15, 16, 17 } is 15. The median of two sequences is defined to be the median of the nondecreasing sequence which contains all the elements of both sequences. For example, the median of S_1 and S_2 is 13.
Given two increasing sequences of integers, you are asked to find their median.
A graph which is connected and acyclic can be considered a tree. The height of the tree depends on the selected root. Now you are supposed to find the root that results in a highest tree. Such a root is called the deepest root.
Given a pair of positive integers, for example, 6 and 110, can this equation 6 = 110 be true? The answer is yes
, if 6 is a decimal number and 110 is a binary number.
Now for any pair of positive integers N_1 and N_2, your task is to find the radix of one number while that of the other is given.
Update your browser to view this website correctly. Update my browser now
  刷CSDN瞟到jsDelivr这个免费CDN,在官网了解一下发现可以加速Github项目。想到GithubPages加载缓慢,就赶紧深入学习。然后我惊奇发现,原来我用的Icarus主题已经用了jsDelivr的CDN,大一时写界面的Bootstrap也用了!它就在身边我居然今
  使用Travis CI部署Hexo博客是Hexo官方文档推荐的部署方法,但是博客源文件会被公开。起初就是因为这一点没有使用Travis CI部署,但是刚成功部署完Hexo发了第一篇博文后我就在想,博客源文件都在本地,如果我换电脑了或者源文件不在身边或者电脑坏了怎么办?岂不是很
官网下载压缩包MongoDB官网 选择相应版本并下载压缩包,解压后将文件夹放至喜欢的地方,用喜欢的名字重命名,我放在了 Home 目录下。 配置环境变量打开终端修改以下文件。 1vim ~/.zshrc 添加以下内容,地址为 MongoDB 的二进制文件夹地址。 1export PATH=/User
  Java设计模式 - 工厂模式 简单工厂模式简单工厂模式组成: 工厂类:简单工厂模式的核心,负责创建所需的产品实例。 抽象产品类:产品类的父类,定义产品类共有的属性和方法。 产品类: 继承抽象产品类,即具体的产品。   首先定义抽象咖啡类,规定所有咖啡共有
  很早就想搞个博客记录学习和生活,留给未来回首往日。Emmm…之所以拖到今天才开始着手,一方面是因为疫情一直宅家想充实,一方面是面临考研,发现自己两年半来居然一点学习笔记也没留下。想想CXK练习时长两年半都出道了,自己考研前的寒假还爆肝了四五周游戏(u1s1,DQB2是真的香)