码迷,mamicode.com
首页 > 2015年08月04日 > 全部分享
zoj 2100 Seeding
SeedingTime Limit: 2 Seconds Memory Limit: 65536 KBIt is spring time and farmers have to plant seeds in the field. Tom has a nice field, which is a r....
分类:其他好文   时间:2015-08-04 20:52:22    阅读次数:128
(medium)LeetCode 236.Lowest Common Ancestor of a Binary Tree
Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree.According to thedefinition of LCA on Wikipedia: “The lowest ...
分类:其他好文   时间:2015-08-04 20:53:28    阅读次数:100
UVA - 12627 Erratic Expansion 奇怪的气球膨胀 (分治)
紫书例题p245Piotr found a magical box in heaven. Its magic power is that if you place any red balloon inside it then, after one hour, it will multiply to ...
分类:其他好文   时间:2015-08-04 20:53:39    阅读次数:253
我是谁:没有绝对安全的系统
我是谁:没有绝对安全的系统 Bt种子下载地址(点击查看:如何下载本站BT种子?)(网盘广告太多的解决办法):http://www.colafile.com/file/5897740(我是谁:没有绝对安全的系统.2014.简繁中字.zip)我是谁:没有绝对安全的系统 磁力链接(点击查看:如何使用磁力链...
分类:其他好文   时间:2015-08-04 20:54:01    阅读次数:110
2015 多校赛 第二场 1004 hdu(5303)
Problem DescriptionThere arenapple trees planted along a cyclic road, which isLmetres long. Your storehouse is built at position0on that cyclic road.T...
分类:其他好文   时间:2015-08-04 20:52:18    阅读次数:212
页面呈现-文字修饰
文字基本样式 段落美化 文本信息特殊处理 文字链接样式 利用字体库fontAwesome替换常用图标 1.文字基本样式 字体 font-family: "微软雅黑"、Arial、Verdana、"Times New Roman"; 中文或字体中有空格需双引号括起 大小 font-size: px e...
分类:其他好文   时间:2015-08-04 20:53:25    阅读次数:233
WIN10 新建ORACLE实例
1 管理员身份进入CMD环境,执行DBCA命令,在弹出窗口的引导中,完成实例创建2 如果在创建过程中没有选择适当的字符集(最好采用默认字符集),如下图所示,在进入PLSQL DEVELOPER的时候,出现了警告信息 需要修改注册表来更改客户端的编码,网上说路径为:HKEY_LOCAL_MACHINE...
分类:数据库   时间:2015-08-04 20:53:28    阅读次数:265
A beginner’s introduction to Deep Learning
A beginner’s introduction to Deep LearningI amSamvitafrom the Business Team of HyperVerge. I joined the team a few months back to help out on User Gro...
分类:其他好文   时间:2015-08-04 20:51:57    阅读次数:131
Scrapy 轻松定制网络爬虫
网络爬虫(Web Crawler, Spider)就是一个在网络上乱爬的机器人。当然它通常并不是一个实体的机器人,因为网络本身也是虚拟的东西,所以这个“机器人”其实也就是一段程序,并且它也不是乱爬,而是有一定目的的,并且在爬行的时候会搜集一些信息。例如 Google 就有一大堆爬虫会在 Intern...
分类:其他好文   时间:2015-08-04 20:52:46    阅读次数:238
[MetaHook] Load large texture from model
We need hook "GL_LoadTexture"engine function.GL_LOADTEXTURE_SIG from hw.dll(3266) engine, can not use for other engine version. 1 #include 2 #include....
分类:Web程序   时间:2015-08-04 20:51:14    阅读次数:128
ACL 2015 selected paper
ACL 2015 selected paper 概述(1)开完 ACL 2015 大会,选了自己感兴趣的几十篇论文,大部分是自己已经读过的,做了一些概述。相信里面有很多错误,欢迎指正。另外,图文并茂版本在公众号查看,长微博复制图片也许有很多错误显示不出来。1. Text to 3D Scene Ge...
分类:其他好文   时间:2015-08-04 20:50:46    阅读次数:279
redis学习笔记——命令执行流程
基础知识部分如果需要掌握Redis的整个命令的执行过程,那么必须掌握一些基本的概念!否则根本看不懂,下面我就一些在我看来必备的基础知识进行总结,希望能为后面命令的整个执行过程做铺垫。事件Redis服务器是一个事件驱动程序,服务器需要处理以下两类事件:文件事件(file event):Redis服务器...
分类:其他好文   时间:2015-08-04 20:50:42    阅读次数:118
Java大数加法 HDU1002
1 import java.math.*; 2 import java.util.Scanner; 3 4 5 public class Main{ 6 public static void main(String[] args){ 7 BigInteger a,b; ...
分类:编程语言   时间:2015-08-04 20:52:21    阅读次数:148
mysql replace into用法详细说明
From: http://www.cnblogs.com/martin1009/archive/2012/10/08/2714858.htmlREPLACE的运行与INSERT很相似。只有一点例外,假如表中的一个旧记录与一个用于PRIMARYKEY或一个UNIQUE索引的新记录具有相同的值,则在新记...
分类:数据库   时间:2015-08-04 20:52:00    阅读次数:150
java中执行js代码
要在java中执行js代码,首先明白,java不支持浏览器本身的方法。支持自定义的js方法,否则会报错先新建一个js文件:jsss.js内容如下: function aa(a,b){ return a+b;}然后在java中写代码:public class ZipTest { ...
分类:编程语言   时间:2015-08-04 20:50:53    阅读次数:105
js-数组的原型拓展
1 Array.prototype.contain = function(e){ 2 for(i=0;i -1) {18 this.splice(index, 1);19 }20 };21 22 Array.prototype.distinct=function()...
分类:编程语言   时间:2015-08-04 20:49:42    阅读次数:175
Linux下tomcat作为守护进程运行(开机启动、以指定的用户运行、解决非root身份不能绑定1024以下端口的问题)的配置方法
如题。参考资料:http://www.jdiy.org/read.jd?id=y0haaynq1whttp://blog.csdn.net/shw2004/article/details/5782318
分类:系统相关   时间:2015-08-04 20:51:39    阅读次数:1530
2342条   上一页 1 ... 23 24 25 26 27 28 29 ... 138 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!