E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Dimensional
cocos2d-x 3x Sprite3D
Sprite3D is a three-
dimensional
model that includes the model, skeletal and rendering data needed to
·
2015-11-12 19:54
cocos2d-x
poj1050(nyoj104 zoj1074)dp问题
Memory Limit: 10000K Total Submissions: 39913 Accepted: 21099 Description Given a two-
dimensional
·
2015-11-12 17:36
poj
HDU 3571 N-
dimensional
Sphere
高斯消元,今天数学死了无数次…… #include <cstdio> #include <cstring> #include <cmath> #include <iostream> #include <algorithm> #define LL __int64 const int maxn=55;
·
2015-11-12 16:21
HDU
POJ 2481 Cows【树状数组】
have discovered that the clover growing along the ridge of the hill (which we can think of as a one-
dimensional
·
2015-11-12 15:01
树状数组
POJ 1050 To the Max【最大子矩阵】
Description Given a two-
dimensional
array of positive and negative integers, a sub-rectangle is any
·
2015-11-12 15:44
poj
二维码识别器PC版(电脑版)
【什么是二维码】 二维码 (2-
dimensional
bar code) 是用某种特定的几何图形按一定规律在平面(二维方向上)分布的黑白相间的图形记录数据符号信息的;在代码编制上巧妙地利用构成计算机内部逻辑基础的
·
2015-11-12 14:37
二维码
ACM学习历程—FZU2148 Moon Game(计算几何)
a kind of special (hentai) game in the clearly blue sky which we can just consider as a kind of two-
dimensional
·
2015-11-12 11:53
game
中国商务智能免费资料大全
数据仓库维度建模技术在电信行业的应用研究 《数据仓库结构用户开发指南》 财务报表分析教程 1994-2007 bi厂商收购列表 设计并实现ETL过程(IBM讲座)
Dimensional
·
2015-11-12 11:19
免费
杭电1081(动态规划)
题目: Problem Description Given a two-
dimensional
array of positive and negative integers, a sub-rectangle
·
2015-11-12 10:45
动态规划
Kadane's Algorithm
is an O( n) algorithm for finding the maximum contiguous subsequence in a one-
dimensional
·
2015-11-12 09:38
Algorithm
Maximum Sum (二维)
108.html Quite similar to 10074 and 10667. [ edit]Summary Given an n by n two-
dimensional
·
2015-11-12 09:37
max
HDU 1081 To The Max (DP)
Description Given a two-
dimensional
array of positive and negative integers, a sub-rectangle is any
·
2015-11-11 18:57
HDU
F - To the Max
Given a two-
dimensional
array of positive and negative integers, a sub-rectangle is any contiguous sub-array
·
2015-11-11 18:10
max
[CC150] Find a line passing the most number of points
Problem: Given a two-
dimensional
graph with points on it, find a line which passes the most number of
·
2015-11-11 17:02
number
Searching a 2D Sorted Matrix Part I
Write an efficient algorithm that searches for a value in an n x m table (two-
dimensional
·
2015-11-11 15:44
search
To the Max
Description Given a two-
dimensional
array of positive and negative integers, a sub-rectangle
·
2015-11-11 15:09
max
Python numpy学习笔记(一)
print "<== print version ==>" 3 print np.version.version 4 print "<== 1-
dimensional
·
2015-11-11 12:30
python
Lanczos Algorithm and it's Parallelization Stragegy
本篇翻译来自
Dimensional
Reduction 中的Lanczos Algorithm和Parallel Stragegy部分。
·
2015-11-11 11:16
Algorithm
qt二维码示例
二维码(Two-
dimensional
code),又称二维条码,它是用特定的几何图形按一定规律在平面(二维方向)上分布的
·
2015-11-11 10:56
二维码
R Language
向量定义:x1 = c(1,2,3); x2 = c(1:100) 类型显示:mode(x1) 向量长度:length(x2) 向量元素显示:x1[c(1,2,3)] 多维向量:multi-
dimensional
·
2015-11-11 09:42
language
recurrent NN
资料以及代码 http://www-etud.iro.umontreal.ca/~boulanni/icml2012 Modeling Temporal Dependencies in High-
Dimensional
·
2015-11-11 08:06
current
[UVA] 784 - Maze Exploration
Maze Exploration A maze of rectangular rooms is represented on a two
dimensional
·
2015-11-11 05:04
exp
Geodesic-based robust blind watermarking method for three-
dimensional
mesh animation by using mesh segmentation
之前因为考试,中断了实验室的工作,现在结束考试了,不能再荒废了。 最近看了一篇关于序列水印的文章,大体思想是:对于一个网格序列,首先对第一帧进行处理,在第一帧上,用网格分割算法(SDF)将网格分割成几个有意义的区域。在每个区域中,计算区域中的点到区域边界的测地线距离,根据测地线距离再将区域里的点分到不同的集合中,然后使集合中测地线距离的平均值保持在
·
2015-11-11 05:02
animation
(poj 1475) Pushing Boxes
Imagine you are standing inside a two-
dimensional
maze composed of square cells which may or may not
·
2015-11-11 04:09
push
【HDU】3571 N-
dimensional
Sphere
题意:给出n维的n+1个坐标,求一个坐标,使得n+1到该坐标的距离相等。距离定义为{(x1, x2 ... xN)| ∑(xi-Xi)^2 = R^2 (i=1,2,...,N) } 首先,列出n+1个方程,显然二次项系数都为1,所以可以先把二次项消去,得到n个n元一次方程。 然后,开始高斯消元。由于java在n=50时,很久都出不了答案,c++又会爆longlong,所以我们可以选择模P。
·
2015-11-11 01:01
HDU
poj 1050 To the Max(最大子矩阵之和,基础DP题)
Limit: 1000MSMemory Limit: 10000K Total Submissions: 38573Accepted: 20350 Description Given a two-
dimensional
·
2015-11-11 00:59
poj
论文阅读笔记之ICML2012::The Landmark Selection Method for Multiple Output Prediction 基于代表性特征选取的多维度回归方法
我对论文打分(满分5分):4.5分 论文目标: 做high
dimensional
regression的问题,即 一般做回归的时候y的维度会比x低,甚至是一维的,比如一般用回归来做分类、预测。
·
2015-11-11 00:21
select
POJ 1050 To the Max -- 动态规划
id=1050 Description Given a two-
dimensional
array of positive and negative integers, a sub-rectangle
·
2015-11-10 21:28
动态规划
【Java数据结构】 数组和简单排序
一维数组 一维数组(one‐
dimensional
array )实质上是相同类型
·
2015-11-09 12:24
java
iOS 下一维码与二维码识别相关资料
一维码:barcode 二维码:two-
dimensional
barcode 在 iOS 下主要有两个开源库可以用来处理条码: 1、Zxing:http://code.google.com/p/
·
2015-11-09 11:41
ios
OpenGIS Simple feature access
OGIS规范定义的几何对象定义 Curve:A Curve is a 1-
dimensional
geometric object usually stored as a sequence of
·
2015-11-08 16:56
Access
【分享】数据挖掘学习资料免费下载
Concepts Models Methods and Algorithms - 2003.chm 8.4 MB IEEE - Finding Patterns in Three
Dimensional
·
2015-11-08 14:26
数据挖掘
ERStudio的使用
打开ERstudio,点击新建出现如图对话框: 选择第一个,表示创建一个新的关系型 数据库模型 这里提一点数据库模型分为relational(关系)和
dimensional
(多维) 两种在这里主要以关系型数据库为主来介绍模型的创建过程
·
2015-11-08 09:30
IO
ERStudio的使用
3250320.html 打开ERstudio,点击新建出现如图对话框: 选择第一个,表示创建一个新的关系型 数据库模型 这里提一点数据库模型分为relational(关系)和
dimensional
·
2015-11-07 14:05
IO
[编程珠玑]aha,algorithms
Rotate a one-
dimensional
vector of n elements left by i positions.
·
2015-11-05 08:57
algorithms
URAL1146——DP——Maximum Sum
Description Given a 2-
dimensional
array of positive and negative integers, find the sub-rectangle
·
2015-11-02 16:53
max
Think Python - Chapter 15 - Classes and objects
As an example, we will create a type called Point that represents a point in two-
dimensional
·
2015-11-02 11:26
classes
即将开源,码晒客/疯狂创意二维码,个性二维码底层。
二维码: 二维码(Two-
dimensional
code),又称二维条码,它是用特定的几何图形按一定规律在平面(二维方向)上分布的黑白相间的图形,是所有信息数据的一把钥匙。
·
2015-11-01 15:42
二维码
Searching for Approximate Nearest Neighbours
neighbour search is a common task: given a query object represented as a point in some (often high-
dimensional
·
2015-11-01 10:08
search
关于3d打印
3D打印——three-
dimensional
printing,简称3dp。又称三维打印或立体打印,最早由美国麻省理工学院于1993年开发。
·
2015-11-01 10:05
打印
SAP BW标准模型简介(BW星形模型 BW Star Schema )
它由中心的一个事实表(Fact Table)和一些围绕它的维度表(
Dimensional
Table)组成。 事实(Fact)着眼于商业活动中的分析数据,通常回答诸如这个产品多贵?卖了多少?
·
2015-11-01 10:13
schema
Sierpinski Gasket分形图的绘制
/**/ /* two-
dimensional
Sierpinski gasket  
·
2015-11-01 09:09
ERP
Wikipedia上对Marching cubes的描述
proceedings by Lorensen and Cline,[1] for extracting a polygonal mesh of an isosurface from a three-
dimensional
·
2015-11-01 08:12
cube
android 之GridView和ImageView教程
GridView: A view that shows items in two-
dimensional
scrolling grid.
·
2015-10-31 18:01
imageview
mondrian schema学习(1)
A schema defines a multi-
dimensional
database.
·
2015-10-31 17:44
mondrian
《Cracking the Coding Interview》——第7章:数学和概率论——题目5
代码: 1 // 7.5 Given two squares on two-
dimensional
plane, draw a line to cut them
·
2015-10-31 15:00
interview
Segment
Description Given n segments in the two
dimensional
space, write a program, which determines if there
·
2015-10-31 13:47
T
一个oracle 学习网站 收藏
http://www.smart-soft.co.uk/Oracle/oracle-plsql-tutorial-part-11.htm PLSQL Varrays Varrays are one-
dimensional
·
2015-10-31 12:46
oracle
[ACM_其他] Square Ice (poj1099 规律)
Description Square Ice is a two-
dimensional
arrangement of water molecules H2O, with oxygen at the
·
2015-10-31 11:35
ACM
GEM vs TTM
From: http://lwn.net/Articles/283793/ Getting high-performance, three-
dimensional
graphics working under
·
2015-10-31 11:48
gem
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他