Binary TreeDefinition: at most two children node. Binary Tree Example: 10 ==root / \ 13 15 cur / \ / \ 21 72 12 2 / \ null null class TreeNode{ int va ...
分类:
其他好文 时间:
2019-07-22 09:49:33
阅读次数:
78
原CF 1138A Sushi for Two 基本思路 每个状态之和之前的一个连续状态有关,并且取下限即可,若状态发生改变,计数器置零 c++ include using namespace std; int main() { int n;cin n;int num1=0,num2=0,sum=0 ...
分类:
其他好文 时间:
2019-07-21 20:06:11
阅读次数:
121
?给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。 You are given two non empty linked lists represe ...
分类:
其他好文 时间:
2019-07-21 13:19:56
阅读次数:
116
Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1 = { 11, 12, 13, 14 } is 1 ...
分类:
其他好文 时间:
2019-07-21 01:09:36
阅读次数:
77
https://leetcode-cn.com/problems/add-two-numbers/submissions/ 我的方法: 按部就班的考虑与处理.注意不要有考察漏掉的情况 时间复杂度O(n),空间复杂度O(n) //我所有的时空复杂度都是指级别,有必要具体分析的会特别注明 结果: 官方题 ...
分类:
其他好文 时间:
2019-07-20 21:31:20
阅读次数:
110
题目描述 Farmer John's NN cows are each standing at distinct locations (x_1, y_1) \ldots (x_n, y_n)(x1?,y1?)…(xn?,yn?) on his two-dimensional farm (1 \leq ...
分类:
其他好文 时间:
2019-07-19 10:46:16
阅读次数:
96
Fox Ciel is playing a mobile puzzle game called "Two Dots". The basic levels are played on a board of size n?×?m cells, like this: Each cell contains ...
分类:
其他好文 时间:
2019-07-18 19:47:46
阅读次数:
136
题目描述 You are given two permutations aa and bb , both consisting of nn elements. Permutation of nn elements is such a integer sequence that each value ...
分类:
编程语言 时间:
2019-07-18 13:55:30
阅读次数:
115
ADFS的是什么?又不是什么? ADFS Proxy是? claims是?security Token是? 信任(trust)是? 信任的方向(Trust Direction)是One-way trust 或者Two-way trust? Trust Transitivity是? 联合信任(fede ...
分类:
其他好文 时间:
2019-07-16 14:13:11
阅读次数:
152