颠倒二进制位。题意是给一个数字,请你将其二进制的表达反转过来。例子, Input: 00000010100101000001111010011100 Output: 00111001011110000010100101000000 Explanation: The input binary stri ...
分类:
其他好文 时间:
2020-01-06 09:29:50
阅读次数:
71
Given a binary tree, find the leftmost value in the last row of the tree. Example 1: Input: 2 / \ 1 3 Output: 1 Example 2: Input: 1 / \ 2 3 / / \ 4 5 ...
分类:
其他好文 时间:
2020-01-05 09:54:14
阅读次数:
60
Problem Statement Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \ 1 3 6 9 Output: 4 / \ 7 2 / \ / \ 9 6 3 1 Trivia: This problem was inspired ...
分类:
其他好文 时间:
2020-01-04 10:29:05
阅读次数:
86
Question Description Input Output Sample Input Sample Output 解题思路简述: 在接收每一个数组的过程中,将负数及其绝对值以键值对的形式存入map(先绝对值,后负数)(因为题目有说“题目保证对于每一个测试实例,所有的数的绝对值都不相等。”) ...
分类:
编程语言 时间:
2020-01-01 18:24:20
阅读次数:
87
题目 传送门 A Temporarily unavailable standard input/output 1 s, 256 MB 给一个线段ab, 问除去 c点圆心半径r覆盖的 线段多长,如果圆在线段外 直接输出 ab 长度就行, 若在线段内 则输出cout << max(b-a-max((mi ...
分类:
其他好文 时间:
2019-12-28 20:57:11
阅读次数:
95
Given an integer number n, return the difference between the product of its digits and the sum of its digits. Example 1: Input: n = 234 Output: 15 Exp ...
分类:
其他好文 时间:
2019-12-19 09:20:24
阅读次数:
92
C.As Simple as One and Two A. As Simple as One and Two time limit per test 3 seconds memory limit per test 256 megabytes input standard input output s ...
分类:
其他好文 时间:
2019-12-17 22:13:12
阅读次数:
81
BIOS BIOS是英文"Basic Input Output System"的缩略词,直译过来后中文名称就是"基本输入输出系统"。在IBM PC兼容系统上,是一种业界标准的固件接口。 BIOS这个字眼是在1975年第一次由CP/M操作系统中出现。 [2] BIOS是个人电脑启动时加载的第一个软件。 ...
分类:
移动开发 时间:
2019-12-17 17:52:16
阅读次数:
159
Description Input Output 当时做题时,思路没问题,但是有一个很大的问题就是自己在编程时没化简表达式,n*m 爆了 int,还有一个点就是,向上去整没用好! #include <bits/stdc++.h> using namespace std; int main() { d ...
分类:
其他好文 时间:
2019-12-15 21:50:14
阅读次数:
115
Given an unsorted array of integers, find the length of longest continuous increasing subsequence (subarray). Example 1: Input: [1,3,5,4,7] Output: 3 ...
分类:
其他好文 时间:
2019-12-15 10:28:00
阅读次数:
70