问题 给定一群树的坐标点,画个围栏把所有树围起来(凸包)。 至少有一棵树,输入和输出没有顺序。 Input: [[1,1],[2,2],[2,0],[2,4],[3,3],[4,2]] Output: [[1,1],[2,0],[4,2],[3,3],[2,4]] 思路和代码 1. 暴力法(超时) ...
分类:
编程语言 时间:
2018-10-25 11:12:37
阅读次数:
222
Given an unsorted array of integers, find the length of longest increasing subsequence. Example: Input: [10,9,2,5,3,7,101,18] Output: 4 Explanation: T ...
分类:
其他好文 时间:
2018-10-24 10:52:51
阅读次数:
111
D. Candies for Children time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output D. Candies for Ch ...
分类:
其他好文 时间:
2018-10-23 16:22:39
阅读次数:
131
Given an integer, return its base 7 string representation. Example 1: Input: 100 Output: "202" Example 2: Input: 7 Output " 10" Note: The input will b ...
分类:
其他好文 时间:
2018-10-23 10:53:43
阅读次数:
151
java开发知识IO知识之输入输出流以及文件 一丶流概述 流十一组有序的数据序列.根据操作的类型,可以分为输入流跟输出流两种. IO(input/output)输入/输出流提供了一条通道程序.可以使用这条通道把源的字节序列送到目的地 简单来说. 就是操作二进制. 二进制提供了读写功能. 写就是输出. ...
分类:
编程语言 时间:
2018-10-22 17:50:36
阅读次数:
163
Calculate the sum of two integers a and b, but you are not allowed to use the operator + and . Example 1: Input: a = 1, b = 2 Output: 3 Example 2: Inp ...
分类:
其他好文 时间:
2018-10-21 13:02:24
阅读次数:
129
测评传送门 题意: n 头牛互相对着叫,每头牛有一个 耳背度ai,位置bi; 使得两头牛可以互相听见需要的音量 abs(bi - bj)*max(ai , aj) 求所有牛可以互相听见的总音量 input output 思路: n方的暴力做法很显然,也很好写,但必挂! 于是就需要用数据结构来优化 c ...
分类:
其他好文 时间:
2018-10-19 22:45:03
阅读次数:
181
IO input output 在内存中存在数据交换的操作都可以认为是IO操作 和终端交互 : input print 和磁盘交互 : read write 和网络交互 : recv send IO密集型程序 : 在程序执行过程中存在大量IO操作,而cpu运算操作较少。消耗cpu较少,运行效率较低 ...
分类:
编程语言 时间:
2018-10-16 22:05:44
阅读次数:
214
题目 Given a non negative integer num, repeatedly add all its digits until the result has only one digit. Example: Input: 38 Output: 2 Explanation: The ...
分类:
其他好文 时间:
2018-10-15 11:47:13
阅读次数:
131
突然发现自己从来没有写过正儿八经的大数.于是在退役之前写一把. 希望能在用到大数时替代掉慢死的Python. 项目地址 "Github.com/Frankaiyou/LargeIntegar" Completed [x] Input; [x] Output; [x] Compare size; [x ...
分类:
其他好文 时间:
2018-10-14 19:13:44
阅读次数:
141