Remove Duplicates from Sorted ArrayGiven a sorted array, remove the duplicates in place such that each element appear only once and return the new len...
分类:
其他好文 时间:
2014-11-14 12:18:21
阅读次数:
89
Remove ElementGiven an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. ...
分类:
其他好文 时间:
2014-11-14 10:39:29
阅读次数:
161
The C10K problem翻译(C10K = connection 10 kilo 问题)。k 表示 kilo,即 1000 比如:kilometer(千米), kilogram(千克)。如今的web服务器需要同时处理一万个以上的客户端了,难道不是吗?毕竟如今的网络是个big place了。现...
分类:
其他好文 时间:
2014-11-12 22:42:52
阅读次数:
278
Given a singly linked list L: L0→L1→…→Ln-1→Ln,reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For e...
分类:
其他好文 时间:
2014-11-12 19:42:37
阅读次数:
186
leetcode-Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra spac...
分类:
其他好文 时间:
2014-11-12 16:39:30
阅读次数:
197
1.前导程序//9.1.0函数#include#define NAME "GIGATHINK,INC."#define ADDRESS "101 Megapolis"#define PLACE "Megapolis,CA 94904"#define WIDTH 40void starbar(voi....
分类:
其他好文 时间:
2014-11-11 20:45:11
阅读次数:
318
关于异形焊盘的创建,可参看下面的半圆PAD的制作:1.新建一个PCB文件,然后在里面画一个半圆的Arc,即Place放置(P)》Arc,并且要将其开口处 封闭,即可用Place 放置(P)》Line走线(L)封闭.2.选中整个半圆区域,而后执行Tools工具(T)》Convert转换(V)》Crea...
分类:
其他好文 时间:
2014-11-11 12:23:01
阅读次数:
1568
Remove Duplicates from Sorted ArrayGiven a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new lengt...
分类:
其他好文 时间:
2014-11-11 12:22:39
阅读次数:
144
Remove ElementGiven an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. ...
分类:
其他好文 时间:
2014-11-10 21:27:50
阅读次数:
267
Given a binary tree, flatten it to a linked list in-place.For example,Given 1 / \ 2 5 / \ \ 3 4 6The flattened t...
分类:
其他好文 时间:
2014-11-09 15:04:28
阅读次数:
180