Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1.Examples:s = "leetcode" return 0. s... ...
分类:
其他 时间:
2017-01-10 23:35:46
收藏:
0 评论:
0 赞:
0 阅读:
256
简单工厂模式实现了一种"工厂"概念的面向对象设计模式,它可以在不指定对象具体类型的情况下创建对象。其实质是定义一个创建对象的接口,但让实现这个接口的类来决定实例化具体类。工厂方法让类的实例化推迟到子类中进行。 以书本上的计算器程序为例,其UML描述如下: 图中,AddOperator, Subtac ...
分类:
其他 时间:
2017-01-10 23:35:29
收藏:
0 评论:
0 赞:
0 阅读:
217
217. Contains DuplicateGiven an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at... ...
分类:
编程语言 时间:
2017-01-10 23:35:14
收藏:
0 评论:
0 赞:
0 阅读:
199
2.1 常量就是在程序中不可变化的量,常量在定义的时候必须给一个初值。 1.1.1 #define 定义一个宏常量 1.1.2 const 定义一个const常量 2.2 字符串常量 “hello world” 对于#define类型的常量,c语言的习惯是常量名称为大写,但对于普通const常量以及 ...
分类:
编程语言 时间:
2017-01-10 23:34:59
收藏:
0 评论:
0 赞:
0 阅读:
150
1.WEB服务器: 理解WEB服务器,首先你要理解什么是WEB?WEB你可以简单理解为你所看到的HTML页面就是WEB的数据元素,处理这些数据元素的应用软件就叫WEB服务器,如IIS、apache。 WEB服务器与客户端打交道,它要处理的主要信息有:session、request、response、 ...
分类:
Web开发 时间:
2017-01-10 23:34:48
收藏:
0 评论:
0 赞:
0 阅读:
291
QuestionWrite a function to delete a node (except the tail) in a singly linked list, given only access to that node.Supposed the linked list is 1 -> 2... ...
分类:
其他 时间:
2017-01-10 23:34:31
收藏:
0 评论:
0 赞:
0 阅读:
188
BOS物流管理系统-第五天-定区管理-WebServcie远程调用 主要内容: 分区设置—导出(分区条件查询后的结果导出为Excel—POI生成Excel和文件下载) 定区管理---定区添加(定区关联分区和取派员,easyUi相关的注意的地方) 定区管理-分页条件查询(复习—form表单json转换... ...
分类:
其他 时间:
2017-01-10 23:33:50
收藏:
0 评论:
0 赞:
0 阅读:
1893
Write a program that outputs the string representation of numbers from 1 to n.But for multiples of three it should output “Fizz” instead of the number... ...
分类:
编程语言 时间:
2017-01-10 23:33:28
收藏:
0 评论:
0 赞:
0 阅读:
216
如果想对python脚本传参数,python中对应的argc, argv(c语言的命令行参数)是什么呢? 需要模块:sys参数个数:len(sys.argv)脚本名: sys.argv[0]参数1: sys.argv[1]参数2: sys.argv[2] test.py: ? 1 2 3 4 5 i ...
分类:
编程语言 时间:
2017-01-10 23:33:12
收藏:
0 评论:
0 赞:
0 阅读:
204
看了篇腾讯的沙龙分享,觉得很不错,在这里分享给大家 crash的大致划分: ...
分类:
移动平台 时间:
2017-01-10 23:32:56
收藏:
0 评论:
0 赞:
0 阅读:
225
有序性 jvm和cup为了有效修改指令顺序 在有序性中 happen-before规则可见性 语义的串行 lock volatile 传递性。 finalze在狗杂方法后面执行 线程start方法优先执行 原子性 在cup执行不可拆分 i++不是原子性 ...
分类:
其他 时间:
2017-01-10 23:32:44
收藏:
0 评论:
0 赞:
0 阅读:
193
Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child i has a g... ...
分类:
其他 时间:
2017-01-10 23:32:32
收藏:
0 评论:
0 赞:
0 阅读:
299
本篇和大家分享的是学习Vuejs的总结和调用webapi的一个小示例;快到年底了争取和大家多分享点东西,希望能对各位有所帮助;本章内容希望大家喜欢,也希望各位多多扫码支持和推荐谢谢: » Vuejs - 学习大杂烩 » WebApi + Vue.js 示例 下面一步一个脚印的来分享: » Vuejs ...
分类:
Web开发 时间:
2017-01-10 23:32:04
收藏:
0 评论:
0 赞:
0 阅读:
354
假设str长度为len,重复的子串长度为k,则如果真的由连续多个长度为k的子串重复构成str,那么在对str求next时,由于连续对称性(如图,前后两个虚线框内字符串相等),会从next[k+1]开始,1,2,3...地递增,直到next[len]=len-k,且(len-k)%k==0,表示有整数... ...
分类:
其他 时间:
2017-01-10 23:31:40
收藏:
0 评论:
0 赞:
0 阅读:
306
/* 多态的应用: 1. 多态用于形参类型的时候,可以接收更多类型的数据 。 2. 多态用于返回值类型的时候,可以返回更多类型的数据。 多态的好处: 提高了代码的拓展性。 需求1: 定义一个函数可以接收任意类型的图形对象,并且打印图形面积与周长。 */ //图形类 abstract class My... ...
分类:
其他 时间:
2017-01-10 23:31:17
收藏:
0 评论:
0 赞:
0 阅读:
284
Given an array of integers, every element appears twice except for one. Find that single one.public class Solution { public int SingleNumber(int[] num... ...
分类:
编程语言 时间:
2017-01-10 23:30:55
收藏:
0 评论:
0 赞:
0 阅读:
286
You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizontally/ve... ...
分类:
其他 时间:
2017-01-10 23:30:37
收藏:
0 评论:
0 赞:
0 阅读:
300
apt-get purge virtualbox-guest-x11apt-get autoremove --purgerebootapt-get updateapt-get dist-upgraderebootapt-get updateapt-get install -y virtualbox- ...
分类:
系统服务 时间:
2017-01-10 23:30:19
收藏:
0 评论:
0 赞:
0 阅读:
1912
在项目开发的过程中,因为无法和后台的数据做交互,所以我们可以自建一个假数据文件(如data.json)到项目文件夹中,这样我们就可以模仿后台的数据进行开发。但是,如何在一个vue.js 项目中引入本地的json文件呢,下面就将步骤贴出来。(此时项目是由webpack打包而成)。 整个项目是由webp ...
分类:
Web开发 时间:
2017-01-10 23:30:08
收藏:
0 评论:
0 赞:
0 阅读:
635
参考资料:http://blog.csdn.net/v_july_v/article/details/7041827#t10 3.3.6 基于《最大长度表》与基于《next 数组》等价 我们已经知道,利用next 数组进行匹配失配时,模式串向右移动 j - next [ j ] 位,等价于已匹配字符... ...
分类:
编程语言 时间:
2017-01-10 23:29:53
收藏:
0 评论:
0 赞:
0 阅读:
340