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 place with cons...
分类:
其他好文 时间:
2015-07-06 18:05:48
阅读次数:
125
插入排序:插入排序属于原地排序(sorted in place),使用的是增量(incremental)方法。排序从第二个元素开始遍历。在排好序的子数组A[1 .. j -1]中,将元素A[j]插入,形成排好序的子数组A[1 .. j];然后,重复此操作,直到整个数组有序。使用for循环实现的升序插...
分类:
编程语言 时间:
2015-07-05 16:23:54
阅读次数:
147
原文 If you park you car in the wrong place, a traffic policeman will soon find it. You will be very lucky if he lets you go without a ticket. However, this does no always happen. Traffic police ar...
分类:
其他好文 时间:
2015-07-04 15:40:12
阅读次数:
223
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 place with cons...
分类:
其他好文 时间:
2015-07-04 15:35:29
阅读次数:
123
After robbing those houses on that street, the thief has found himself a new place for his thievery so that he will not get too much attention. This t...
分类:
其他好文 时间:
2015-07-03 23:15:36
阅读次数:
158
House Robber IINote:This is an extension ofHouse Robber.After robbing those houses on that street, the thief has found himself a new place for his thi...
分类:
其他好文 时间:
2015-07-03 18:59:20
阅读次数:
135
How Much Did It Rain? Winner's Interview: 1st place, Devin AnzelmoAn early insight into the importance of splitting the data on the number of radar sc...
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 changed. It doesn't mat...
分类:
其他好文 时间:
2015-07-02 15:25:15
阅读次数:
113
//: Playground - noun: a place where people can play
import UIKit
//使用 enum
来创建枚举。如同类和其他命名类型,枚举也可以有方法
enum Rank:
Int {
case Ace =
1
case Two, Three, Four, Five, Six, ...
分类:
其他好文 时间:
2015-07-01 18:33:33
阅读次数:
106
//: Playground - noun: a place where people can play
import UIKit
//使用 if
和 switch 作为条件控制。使用 for-in
、 for
、 while 、 do-while
作为循环。小括号不是必须的,但主
体的大括号是必需的。
let individualS...
分类:
编程语言 时间:
2015-07-01 18:32:58
阅读次数:
139