码迷,mamicode.com
首页 > 2015年08月17日 > 全部分享
[LeetCode] Word Search II
A simple combination of Implement Trie (Prefix Tree) and Word Search. If you've solved them, this problem will become easy :-)The following code is ba...
分类:其他好文   时间:2015-08-17 23:24:14    阅读次数:150
jquery设计思想之写法-方法函数化&链式操作
1 2 3 4 5 无标题文档 6 7 53 54 55 56 div57 58 59 方法函数化的一些小细节:1、jQuery中的括号是特别多,特别重要的;2、出现“=” 赋值的情况比较少,很多都是通过传参来实现;所谓链式操作:就是指可以省略代码中原来赋值的那种形式,转而使用"."来连...
分类:Web程序   时间:2015-08-17 23:23:37    阅读次数:252
POJ 2823 Sliding Window
Sliding WindowTime Limit: 12000msMemory Limit: 65536KBThis problem will be judged onPKU. Original ID:282364-bit integer IO format:%lld Java class name...
分类:Windows程序   时间:2015-08-17 23:23:57    阅读次数:228
Merge Sorted Array
Given two sorted integer arraysnums1andnums2, mergenums2intonums1as one sorted array.Note:You may assume thatnums1has enough space (size that is great...
分类:其他好文   时间:2015-08-17 23:23:50    阅读次数:169
20150817---成长日记1---DelayQueue&&Delayed&&Other
今天第一次接触DelayQueue,源于项目中的话单解析入库的拆分线程中引入,首先简单了解一下DelayQueue:DelayQueue是一个无界阻塞队列,只有在延迟期满时才能从中提取元素。该队列的头部是延迟期满后保存时间最长的Delayed 元素。 问题1:如何来判断延迟期是否满了呢? --...
分类:其他好文   时间:2015-08-17 23:24:30    阅读次数:156
[算法专题] LinkedList
前段时间在看一本01年出的旧书《effective Tcp/Ip programming》,这个算法专题中断了几天,现在继续写下去。 Introduction 对于单向链表(singly linked list),每个节点有?个next指针指向后一个节点,还有一个成员变量用以储存数值;对于双向链表(...
分类:编程语言   时间:2015-08-17 23:23:21    阅读次数:259
公司内部培训SQL Server传统索引结构PPT分享
公司内部培训SQL Server传统索引结构PPT分享下载地址http://files.cnblogs.com/files/lyhabc/SQLServer%E4%BC%A0%E7%BB%9F%E7%B4%A2%E5%BC%95%E7%BB%93%E6%9E%84.pptPPT有不对的地方,多多拍砖...
分类:数据库   时间:2015-08-17 23:23:29    阅读次数:160
java基础及多线程
1.多线程 1.1.进程与线程? 进程就是一个运行中的程序。? 一个进程中可以有多个线程,线程是CPU调度和分派的基本单位。我们可以理解为线程就是程序运行中的一条路径。 1.2.多线程的创建及使用 1.2.1.创建 自定义一个类继承Thread类或实现Runnab...
分类:编程语言   时间:2015-08-17 23:23:30    阅读次数:151
多线程 -- GCD
GCD中有2个核心概念任务:执行什么操作队列:用来存放任务执行任务同步方法: dispatch_syncdispatch_sync(dispatch_queue_t queue, dispatch_block_t block);queue:队列block:任务异步方法: dispatch_async...
分类:编程语言   时间:2015-08-17 23:22:42    阅读次数:172
Android(java)学习笔记170:Activity的生命周期
1.首先来一张生命周期的总图:2.几个典型的场景(1)Activity从被装载到运行,执行顺序如下:onCreate() -> onStart() -> onResume();(2)Activity从运行到暂停,再到继续回到运行onPause() -> onResume () 这个过程发生在A...
分类:移动开发   时间:2015-08-17 23:23:39    阅读次数:256
linux下的二进制文件的编辑和查看 -
linux下的二进制文件的编辑和查看一、在Linux下查看二进制文件的软件:xxd (默认2进制)hexdump (默认16进制,可转其他进制) od (默认8进制,可转其他进制)二、编辑:1、biew2、hexedit3、vimVim 来编辑二进制文件。Vim 本非为此而设计的,因而有若干局限。但...
分类:系统相关   时间:2015-08-17 23:23:23    阅读次数:156
mysql 事务提交过程
打开binlog选项后,执行事务提交命令时,就会进入两阶段提交模式。两阶段提交分为prepare阶段和commit两个阶段。流程如下 :这里面涉及到两个重要的参数:innodb_flush_log_at_trx_commit和sync_binlog,参数可以设置不同的值,具体可以查看mysql的帮助...
分类:数据库   时间:2015-08-17 23:22:35    阅读次数:189
[LeetCode] Implement Trie (Prefix Tree)
You need to understand what a Trie is before writing the code :-) This link has a nice solution, whose code is rewritten below. 1 class TrieNode { 2 p...
分类:其他好文   时间:2015-08-17 23:23:23    阅读次数:191
NBUT 1218 You are my brother(带权并查集)
#include#include#include#include#include#include#include#include#define LL __int64using namespace std;int fa[3000];int val[3000];int find(int x){ i...
分类:其他好文   时间:2015-08-17 23:23:23    阅读次数:210
IOS开发网络篇-JSON文件的解析
一、什么是JSON数据 1.JSON的简单介绍 JSON:是一种轻量级的传输数据的格式,用于数据的交互 JSON是javascript语言的一个子集.javascript是个脚本语言(不需要编译),用来给HTML增加动态功能. javascript和java没有半毛钱的关系!服务...
分类:移动开发   时间:2015-08-17 23:21:43    阅读次数:205
DT大数据 86 for生成器过滤器
86讲 http://www.tudou.com/programs/view/30qvTnUD3nE/for表达式的生成器定义和过滤器 本节都是学过的,所以就不多说什么了//val content=for(x<-List(1,2,3); y<- List("Hadoop","Spark","Fli....
分类:其他好文   时间:2015-08-17 23:21:25    阅读次数:176
POJ 1087 A Plug for UNIX
网络最大流水题#include#include#include#include#include#include#include#includeusing namespace std;const int maxn=1000+10;const int INF=0x7FFFFFFF;struct Edge...
分类:其他好文   时间:2015-08-17 23:22:57    阅读次数:136
2350条   上一页 1 ... 7 8 9 10 11 12 13 ... 139 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!