Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array. Example 1: Input: [3,0,1] Output ...
分类:
其他好文 时间:
2018-11-29 17:57:34
阅读次数:
177
暴力解法O(n^4),太恐怖了。 3Sum思路:转化,降维,排序+两层外循环内部两指针(一左一右),O(n^3)。 出错: Input:[0,0,0,0] 0 Output:[] Expected:[[0,0,0,0]] 查错的过程对 if(i==0||(i>0&&nums[i]!=nums[i-1 ...
分类:
其他好文 时间:
2018-11-28 22:25:05
阅读次数:
230
I/O输入/输出(Input/Output) 1、io流可分为两类:输入流和输出流 用户可以从输入流中读取信息,但不能写它。相反,对输出流,只能往输入流写,而不能读它。 定义流: 流就是一个管道里面有流水,这个管道连接了文件和程序。 Java流操作有关的类或接口: Java IO流的结构图: IO流 ...
分类:
其他好文 时间:
2018-11-28 22:06:33
阅读次数:
121
A. Petya and Origami time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output A. Petya and Origami ...
分类:
其他好文 时间:
2018-11-25 11:54:50
阅读次数:
134
C. Multiplicity time limit per test 3 seconds memory limit per test 256 megabytes input standard input output standard output C. Multiplicity time lim ...
分类:
其他好文 时间:
2018-11-24 11:52:28
阅读次数:
124
输入 Input contains multiple test cases, and one case one line. Each case starts with an integer N, and then N integers follow in the same line. 输入 Inpu ...
分类:
其他好文 时间:
2018-11-22 20:45:51
阅读次数:
158
(一)BIOS是什么? BIOS是英文“Basic Input Output System”的缩写,中文含义为基本输入输出系统。它是一组固化到计算机内主板上一个芯片上的程序,它保存着计算机最重 要的基本输入输出的程序、系统设置信息、开机后自检程序和系统自启动程序。 其主要功能是为计算机提供最底层的、 ...
分类:
移动开发 时间:
2018-11-18 19:28:44
阅读次数:
240
计算机基础 1、计算机的基本组成及其功能 一套完整的计算机系统分为:计算机硬件,操作系统,应用软件,如下图: 2、计算机的启动流程: 当我们按下电源键之后,存储在ROM中的BIOS系统就会开始运行,什么是BIOS系统,即Basic input output system:基本输入输出系统,它能做的只 ...
分类:
其他好文 时间:
2018-11-16 10:59:46
阅读次数:
261
1.1防火墙的分类: (一)硬件防火墙:思科的ASA、h3c的sepath等 (二)软件防火墙:iptables等 1.2防火墙的规则: 网关其实就是一个防火墙,网关只是帮忙做了转发。防火墙有四表五链。 五连: 进路由前prerouting 出路由后postrouting INPUT OUTPUT ...
分类:
其他好文 时间:
2018-11-15 22:39:43
阅读次数:
211
Input Output 题意:给你一颗树,选择一个三个点构成的集合,使得这三个点不在一条直线上(意思就是 从一个点出发,用一条不回头的线不能将这三个点连起来)问一共有多少个这样的集合 思路 :先求出一共有多少个集合,就是Cn3 (n-2)*(n-1)*n/6 ; 然后再求不符合条件的个数 求不符合 ...
分类:
其他好文 时间:
2018-11-14 22:31:37
阅读次数:
171