码迷,mamicode.com
首页 > 其他好文
机器学习中的数学(4)-线性判别分析(LDA), 主成分分析(PCA)
机器学习中的数学(4)-线性判别分析(LDA), 主成分分析(PCA)版权声明: 本文由LeftNotEasy发布于http://leftnoteasy.cnblogs.com, 本文可以被全部的转载或者部分使用,但请注明出处,如果有问题,请联系wheeleast@gmail.com前言:第二篇的文...
分类:其他好文   时间:2015-07-21 21:56:35    阅读次数:206
ueditor使用注意事项
1、js问题的介绍 第一ueditor型材2、表单提交获取值的问题 ${param.content } 当中name若是没写的话默认的是editorValue。能够在ueditor.config,js中改动若写了name的属性就会自己主动覆盖原来的属性3、上传图片显示不出来问题...
分类:其他好文   时间:2015-07-21 21:57:52    阅读次数:230
BZOJ 1303: [CQOI2009]中位数图( )
这种题做法应该很多吧...说说我的做法设b出现位置为pos, 从pos开始向右扫一遍顺便维护( x )(> b 的数的个数 - b 的数的个数 - #include#include#include #define rep(i, n) for(int i = 0; i > n >> b; rep(i....
分类:其他好文   时间:2015-07-21 21:57:28    阅读次数:118
POJ-1163-The Triangle: DP入门 递归 递推
递归思路 超时算法#includeusing namespace std;#define Size 101int Triangle[Size][Size];int n;int GetAns( int i, int j ){ if( i==n ) return Tr...
分类:其他好文   时间:2015-07-21 21:57:50    阅读次数:118
【温故知新】形态学操作
腐蚀:用一个结构元素(一般是3×3的大小)扫描图像中的每一个像素,用结构元素中的每一个像素与其覆盖的像素做“与”操作,如果都为1,则该像素为1,否则为0。膨胀:用一个结构元素(一般是3×3的大小)扫描图像中的每一个像素,用结构元素中的每一个像素与其覆盖的像素做“与”操作,如果都为0,则该像素为0,否...
分类:其他好文   时间:2015-07-21 21:57:51    阅读次数:116
Learning how to learn - Diffuse mode thinking
"there is no specific practice for diffuse thinking---one can say that it comes naturally. The only requirement is that we do focussed mode tasks and ...
分类:其他好文   时间:2015-07-21 21:55:04    阅读次数:114
备忘录模式设计模式入门Memento
//备忘录模式定义://在不破坏封装性的前提下,捕获一个对象的内部状态,并在该对象之外保存这个状态。//这样以后就能够将该对象恢复到原先保存的状态//实例:測试两种方案。两种方案在第一阶段的过程是同样的,第二阶段是不同的//实例代码//备忘录对象的窄接口public interface FlowAM...
分类:其他好文   时间:2015-07-21 21:55:44    阅读次数:142
机器学习中的数学(1)-回归(regression)、梯度下降(gradient descent)
机器学习中的数学(1)-回归(regression)、梯度下降(gradient descent)版权声明: 本文由LeftNotEasy所有,发布于http://leftnoteasy.cnblogs.com。如果转载,请注明出处,在未经作者同意下将本文用于商业用途,将追究其法律责任。前言: 上次...
分类:其他好文   时间:2015-07-21 21:56:54    阅读次数:116
Codeforces Gym 100463E Spies 并查集
SpiesTime Limit: 20 SecMemory Limit: 256 MB题目连接http://codeforces.com/gym/100463/attachmentsDescriptionIn the aftermath of Canada’s annexation of Pitts...
分类:其他好文   时间:2015-07-21 21:54:38    阅读次数:193
select实现输入模糊匹配与选择双重功能
html代码 1 3 选择学校: 4 5 6 ...
分类:其他好文   时间:2015-07-21 21:56:40    阅读次数:371
Sizeof与Strlen的区别与联系(转)
一、sizeof sizeof(...)是运算符,在头文件中typedef为unsigned int,其值在编译时即计算好了,参数可以是数组、指针、类型、对象、函数等。它的功能是:获得保证能容纳实现所建立的最大对象的字节大小。由于在编译时计算,因此sizeof不能用来返回动态分配的内存空间的大小。实...
分类:其他好文   时间:2015-07-21 21:54:08    阅读次数:104
hdu 3183 st表
// 题意:从长度为 N 的字符串中删除 M 个字符,使得生成的新串的字典序最小// 思路:反向构造 1 #include "bits/stdc++.h" 2 using namespace std; 3 const int MAXN = 100010; 4 int n; 5 char ans[MA...
分类:其他好文   时间:2015-07-21 21:54:37    阅读次数:117
LeetCode#112
Problem Definition:Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equa...
分类:其他好文   时间:2015-07-21 21:55:17    阅读次数:105
Visual Studio 2015 中文企业版及专业版 正式版下载地址
Visual Studio 简体中文企业版 2015 (x86 and x64)文件名 cn_visual_studio_enterprise_2015_x86_x64_dvd_6846222.isoSHA1 4FFA1EE3E2D3337D3EDAE550A3583ABE9C426BEF文件大小 ...
分类:其他好文   时间:2015-07-21 21:53:00    阅读次数:846
GCD-系统提供的dispatch方法
系统提供的dispatch方法如下: //系统提供的dispatch方法 //后台执行: dispatch_async(dispatch_get_global_queue(0, 0), ^{ // something }); //主线程执行: ...
分类:其他好文   时间:2015-07-21 21:55:12    阅读次数:103
性能调优的方法及概念
SHOW STATUS;FLUSH STATUS;查看当前连接数 SHOW STATUS LIKE 'Thread_%';Thread_cached:被缓存的线程的个数Thread_running:处于激活状态的线程的个数Thread_connected:当前连接的线程的个数Thread_creat...
分类:其他好文   时间:2015-07-21 21:53:22    阅读次数:172
杭电1200--To and Fro
To and FroTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 5478Accepted Submission(s): 3788Problem ...
分类:其他好文   时间:2015-07-21 21:52:47    阅读次数:121
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!