链接:https://leetcode.com/problems/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 n...
分类:
其他好文 时间:
2015-07-14 15:39:00
阅读次数:
103
27 Remove Element链接:https://leetcode.com/problems/remove-element/
问题描述:
Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be...
分类:
其他好文 时间:
2015-07-13 14:06:04
阅读次数:
79
Rotate Image
You are given an n x n 2D matrix representing an image.
Rotate the image by 90 degrees (clockwise).
Follow up:
Could you do this in-place?
思路:其实就是旋转数组,没有什么难度,代码如下:
public ...
分类:
其他好文 时间:
2015-07-13 14:05:28
阅读次数:
569
#include
#include
#include
using namespace std;
//y=kx+z
typedef struct{
double k;
double z;
int count;
}Skzc;
int main(int argc, char *argv[]){
//(x,y)
multimap place;
vector kzcVector;
map...
分类:
其他好文 时间:
2015-07-13 06:38:24
阅读次数:
108
用KeepOut层画线确定大小,如图所示:根据图示的步骤:1、选择菜单栏的对应标记2、选择【Place Line】,画线选项3、在PCB工程的黑色区域就可以画线了如图所示此刻你画的线就是在KeepOut层,线是粉色的!线的边界就是板子的边界【如果你画的线不是粉色的,需要你重新选择KeepOut层!】...
分类:
其他好文 时间:
2015-07-11 22:48:35
阅读次数:
274
【26】Remove Duplicates from Sorted ArrayGiven a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new l...
分类:
其他好文 时间:
2015-07-11 20:00:55
阅读次数:
131
You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?In order to fulfill...
分类:
其他好文 时间:
2015-07-11 13:35:43
阅读次数:
135
题目:
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 space for another array, you must do this in p...
分类:
编程语言 时间:
2015-07-10 22:22:11
阅读次数:
198
题目:Given amxnmatrix, if an element is 0, set its entire row and column to 0. Do it in place.click to show follow up.Follow up:Did you use extra space?...
分类:
其他好文 时间:
2015-07-09 12:48:46
阅读次数:
89
Given a binary tree, flatten it to a linked list in-place.
For example,
Given
1
/ 2 5
/ \ 3 4 6
The flattened tree should look like:
1...
分类:
其他好文 时间:
2015-07-08 22:41:17
阅读次数:
187