码迷,mamicode.com
首页 > 2015年02月09日 > 全部分享
leetcode[152]Maximum Product Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest product.For example, given the array[2,3,-2,4],the...
分类:其他好文   时间:2015-02-09 00:42:25    阅读次数:216
Java快捷键
Ctrl+1 快速修复(最经典的快捷键,就不用多说了)Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加)Ctrl+Alt+↑ 复制当前行到上一行(复制增加)Alt+↓ 当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了)Alt+↑ 当前行和上面一行交互位置(同...
分类:编程语言   时间:2015-02-09 00:41:48    阅读次数:235
[iOS微博项目 - 3.2] - 发送微博
github:https://github.com/hellovoidworld/HVWWeiboA.使用微博API发送微博1.需求学习发送微博API发送文字微博发送带有图片的微博2.思路直接按照微博API的文档指示使用这里测试上传带图片微博3.实现在“发微博”界面,点击右上角发送就调用API// ...
分类:移动开发   时间:2015-02-09 00:41:15    阅读次数:190
Objective-C基础10 :代码块
代码块是对函数的一种扩展,但是比c语言中的函数指针高级多了。1.声明和定义。returnType (^blockName)(list of arg) = ^returnType(list of arg){body;};其中右边的returnType可以省略,因为编译器可以通过代码块的声明来推断函数的...
分类:其他好文   时间:2015-02-09 00:41:50    阅读次数:230
leetcode[160]Intersection of Two Linked Lists
Write a program to find the node at which the intersection of two singly linked lists begins.For example, the following two linked lists:A: a...
分类:其他好文   时间:2015-02-09 00:43:09    阅读次数:216
leetcode[155]Min Stack
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Removes...
分类:其他好文   时间:2015-02-09 00:43:38    阅读次数:237
[leed code 179] Larges Number
1 题目Given a list of non negative integers, arrange them such that they form the largest number.For example, given[3, 30, 34, 5, 9], the largest formed...
分类:其他好文   时间:2015-02-09 00:43:28    阅读次数:173
Permutations II
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2]have the following unique perm...
分类:其他好文   时间:2015-02-09 00:42:31    阅读次数:150
mysql简单使用增删改查
修改配置文件在my.in配置文件找到client 指的是mysql客户端 port3306default -charachter-set=utf-8default -charachter-set=utf8basedir 和datadir 存储路劲下面有有个服务器的字符编码 修改为utf8不是ut.....
分类:数据库   时间:2015-02-09 00:40:38    阅读次数:282
个人知识管理系统Version1.0开发记录(14)
英 语 短 文 数 据 库 设 计使用PowerDesigner画了张简图,如下:图中存在错误和缺陷,仅供参考。各表作用,描述如下:1、英语短文表。记录英语短文信息。2、数据字典表。记录英语短文中专业分类信息。3、英语短文分类表。记录英语短文中专业分类、顺序、优先等信息。根据关联度进行三级分类。4、...
分类:其他好文   时间:2015-02-09 00:41:37    阅读次数:147
EF 用CallContext上下文管理
public class ObjectContextFactory { private static CIK_NewsEntities context; public static DbContext GetContext() { ...
分类:其他好文   时间:2015-02-09 00:39:49    阅读次数:254
cc(self)是什么意思?
分别找到这2句代码:复制代码cc(self):addComponent("components.behavior.EventProtocol"):exportMethods()cc.GameObject.extend(self):addComponent("components.behavior.E...
分类:其他好文   时间:2015-02-09 00:39:20    阅读次数:278
翻String.Format源码发现的新东西:StringBuilderCache
首先看到的是这是一个internal的类,怪不得没见有人这么写过呢! 研究一番之后,终于弄清楚这货是干嘛的了:这个类的作用就是缓存一个StringBuilder对象,给那些并不是要做很多Append操作的地方使用的,我们也看到private const int MAX_BUILDER_SIZE =...
分类:系统相关   时间:2015-02-09 00:42:08    阅读次数:281
debian 学习记录-4 -关于linux2
Slackware、Debian、RedHat、SuSE 这4种发布版是当今大部分发布版的前去,虽然SuSE衍生自Slackware,但由于其技术变革非常大,通常被视为完全独立的发布版Slackware介绍:最古老的Linux发布版,由Patrick Volkerding创立于1993年,目标:稳定...
分类:系统相关   时间:2015-02-09 00:39:12    阅读次数:309
shell 脚本语法
for in do doneusers=$(cut -d ':' -f1 /etc/passwd)for username in $usersdo echo $usernamedonefor do doneread -p "echo number " nufor((i=0; i<$nu...
分类:系统相关   时间:2015-02-09 00:39:52    阅读次数:167
1028. List Sorting
1028. List Sorting (25)时间限制200 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueExcel can sort records according to any column. Now you are supposed ...
分类:其他好文   时间:2015-02-09 00:41:28    阅读次数:192
图解sendRedirect和forward的区别
sendRedirect是HttpServletResponse的方法。他的工作原理是:关键点:调用sendRedirect方法,会在响应中设置locaction响应报头,它告诉浏览器再访问一次directory的新资源。这对于用户来说是透明的,一切都是有浏览器完成的。用户只是发现地址栏发生了变化。...
分类:其他好文   时间:2015-02-09 00:40:40    阅读次数:261
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!