Implement strStr()Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.最简单的思路,逐...
分类:
其他好文 时间:
2014-12-27 22:54:48
阅读次数:
283
Andy's First Dictionary
Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu
Submit Status
Description
Problem B: Andy's First Dictionary
Time li...
分类:
编程语言 时间:
2014-12-27 14:00:20
阅读次数:
259
简介 在.NET中,委托,匿名方法和Lambda表达式很容易发生混淆。我想下面的代码能证实这点。下面哪一个First会被编译?哪一个会返回我们需要的结果?即Customer.ID=5.答案是6个First不仅被编译,并都获得正确答案,且他们的结果一样。如果你对此感到困惑,那么请继续看这篇文章。12....
The app structure:Front-end: app.js/** * Created by Answer1215 on 12/9/2014. */'use strict';function MainCtrl(PeopleService) { var vm = this; vm...
Given an integer array, find a subarray with sum closest to zero. Return the indexes of the first number and last number.ExampleGiven [-3, 1, 1, -3, 5...
分类:
其他好文 时间:
2014-12-27 06:42:21
阅读次数:
661
In Mini2440:First we need a Assembly program to call C program.crt0.S@switch to C program.text.global _start_start: ldr r0,=0x53000000 mov r1,#0...
分类:
其他好文 时间:
2014-12-27 01:29:47
阅读次数:
147
栈遵循LIFO ( last in first out) 即后入先出原则栈结构类似于叠盘子 后叠上去的要先拿走 才能拿到下面的盘子因此stack是一种访问受限的线性存储结构用单向链表的结构来存储stack类1 class stack2 {3 stack();4 bool empty(...
分类:
其他好文 时间:
2014-12-27 00:17:41
阅读次数:
288
#include #include using namespace std;标准类的存储方式为双向循环链表list类 1 class list 2 { 3 list(); 4 list(int n,const T&value=T()); 5 list(T *first,T *...
分类:
其他好文 时间:
2014-12-26 22:55:35
阅读次数:
152
OO原则 1、封装变化 2、多用组合,少用继承 3、针对接口编程,不针对实现编程 4、为交互对象之间的松耦合设计而努力 ? OO模式 观察者模式(Observer pattern)——在对象之间定义一对多的依赖,这样一来,当一个...
分类:
其他好文 时间:
2014-12-26 20:28:16
阅读次数:
197
OO基础 1、抽象 2、封装 3、多态 4、继承 ? OO原则 1、封装变化 2、多用组合,少用继承 3、针对接口编程,不针对实现编程 ? OO模式 策略模式(Strategy Pattern)——定义算法族,分别封装起来,让它们之间可以...
分类:
其他好文 时间:
2014-12-26 18:59:41
阅读次数:
165