码迷,mamicode.com
首页 >  
搜索关键字:ret    ( 30742个结果
646. Maximum Length of Pair Chain
You are given n pairs of numbers. In every pair, the first number is always smaller than the second number. Now, we define a pair (c, d) can follow an ...
分类:其他好文   时间:2017-10-20 11:50:01    阅读次数:115
计算几何 综合模板
1、基本函数 1.1 Point 定义 1.2 Line 定义 1.4 判断:线段相交 1.5 判断:直线和线段相交 1.6 点到直线距离 1.7 点到线段距离 7.1.7 求 两 线 段 间 最 短 距离 1.8 计算多边形面积 1.9 判断点在线段上 1.11 判断点在任意多边形内 7.2.1 ...
分类:其他好文   时间:2017-10-20 10:21:21    阅读次数:197
LeetCode 643. Maximum Average Subarray I (最大平均值子数组之一)
Given an array consisting of n integers, find the contiguous subarray of given length k that has the maximum average value. And you need to output the ...
分类:编程语言   时间:2017-10-20 10:19:51    阅读次数:233
简易js模板引擎
前面 前面 js 模板引擎有很多很多,我以前经常用 art-template ,有时候也会拿 vue 来当模板引擎用。 直到...... 年初的时候,我还在上个项目组,那时候代码规范是未经允许不能使用 【外部代码】,囧 。 有了需求,那么就去写吧,但是后来因为一些原因没用上。后来分了产线,自己搭了一 ...
分类:Web程序   时间:2017-10-20 10:06:21    阅读次数:239
PNPoly算法代码例子,判断一个点是否在多边形里面
写C语言的实验用到的一个算法,判断一个点是否在多边形的内部。C的代码如下: 其中nvert是多边形顶点的个数,vertx和verty分别是多边形顶点横、纵坐标的数组,textx和testy是待测点的坐标。这个算法是由W. Randolph Franklin提出的,根据Jordan curve the ...
分类:编程语言   时间:2017-10-19 21:21:26    阅读次数:659
web容器启动后自动执行程序的几种方式比较
1. 背景 1. 背景 1.1. 背景介绍 在web项目中我们有时会遇到这种需求,在web项目启动后需要开启线程去完成一些重要的工作,例如:往数据库中初始化一些数据,开启线程,初始化消息队列等,在这种需求下,如何在web容器启动后执行这些工作就成为了本文的重点。 1.2. 测试项目搭建 首先我们新建 ...
分类:Web程序   时间:2017-10-19 21:20:27    阅读次数:518
kmp算法的c++实现(不用STL)
#include #include #include using namespace std; const int nMax = 10005; const int mMax = 1000005; char text[mMax],pat[nMax]; int lent,lenp,next[nMax];... ...
分类:编程语言   时间:2017-10-19 21:18:40    阅读次数:365
单例模式
1、 private Singleton(){} 2、 private static final Singleton singleton=new Singleton(); 3、 private static Singleton getSingleton(){ return singleton; } ...
分类:其他好文   时间:2017-10-19 21:18:05    阅读次数:228
695. Max Area of Island
695. Max Area of Island Given a non-empty 2D array grid of 0's and 1's, an island is a group of 1's (representing land) connected 4-directionally (hor ...
分类:其他好文   时间:2017-10-19 21:03:51    阅读次数:217
MongoDB、mysql
安装MongoDB: www.mongodb.com/download-center#community下载.msi安装包→ 自定义安装时把路径首的盘符C改为D,其他如Server\3.x等等都不要改→ 手动创建俩目录(日志D:\Program Files\MongoDB\log\mongodb.l ...
分类:数据库   时间:2017-10-19 19:55:56    阅读次数:256
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!