码迷,mamicode.com
首页 > 其他好文
南方大宗现货开户
南方大宗农产品交易所有限公司是根据国务院办公厅《关于加快电子商务发展的若干意见》,于2010年11月,在长沙市工商局注册成立的农产品交易市场,注册资本为1000万元,主要为农产品经营机构、农产品经纪人提供农产品电子现货交易,并集农产品采购、销售服务、农产品技术指导示范推广、高科技农业新技术的信息咨询...
分类:其他好文   时间:2014-05-26 09:43:35    阅读次数:209
First Missing Positive
Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm should ru...
分类:其他好文   时间:2014-05-26 09:43:14    阅读次数:220
LeetCode:4Sum
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array whic...
分类:其他好文   时间:2014-05-26 09:42:30    阅读次数:209
session_start()一些问题
session问题集锦 对于PHP的session功能,始终找不到合适的答案,尤其是一些错误,还有一些没有错误的结果,最可怕的就是后者,一直为许多的初学者为难。就连有些老手,有时都被搞得莫名其妙。本文,将这些问题,做一个简单的汇总,以便大家查阅。1.错误提示Warning: Cannot sen.....
分类:其他好文   时间:2014-05-26 09:41:55    阅读次数:236
查找占用端口的应用
windows netstat -ano | find "8080"mac,Linux lsof -i:8700 或者 lsof -i | grep 8700
分类:其他好文   时间:2014-05-26 09:44:32    阅读次数:253
the philosophy behind of the design of the STL
The concept of STL is based on a separation of data and operations. The data is managed by container classes, and the operations are defined by config...
分类:其他好文   时间:2014-05-26 09:43:55    阅读次数:288
字符串的截取
1.PHP和js同样是弱类型的语言 字符串的截取php中: $str ="hello world!"; substr($str,1,2);//从字符串的下标为1的地方截取2个字符, eljs中 var str = "hello world!"; str.substring(1,2);//e ...
分类:其他好文   时间:2014-05-26 09:55:57    阅读次数:243
Devexpress Ribbon Add Logo
一直在网上找类似的效果.在Devpexress控件里面的这个是一个Demo的.没法查看源代码.也不知道怎么写的.所以就在网上搜索了半天的.终于找到类似的解决办法.可以使用重绘制的办法的来解决.[DesignerCategory("")] [Designer("")] public cl...
分类:其他好文   时间:2014-05-26 09:57:36    阅读次数:618
深入理解拉格朗日乘子法(Lagrange Multiplier) 和KKT条件
转自http://blog.csdn.net/xianlingmao/article/details/7919597在求取有约束条件的优化问题时,拉格朗日乘子法(Lagrange Multiplier) 和KKT条件是非常重要的两个求取方法,对于等式约束的优化问题,可以应用拉格朗日乘子法去求取最优值...
分类:其他好文   时间:2014-05-26 09:57:21    阅读次数:221
Git 初始状操作指引
You have an empty repositoryTo get started you will need to run these commands in your terminal.New to Git? Learn the basic Git commandsConfigure Git ...
分类:其他好文   时间:2014-05-26 09:57:01    阅读次数:254
Notepad++正则表达式使用
推荐个正则表达式在线测试的工具http://ccmpp.com/Regex/Notepad++正则表达式使用 2011-01-06 10:01:35| 分类: 文档 | 标签:正则表达式 替换 notepad++ 匹配 查找 |举报|字号 订阅 使用正则表达式可以很好地...
分类:其他好文   时间:2014-05-26 09:56:40    阅读次数:388
LeetCode:3Sum Closest
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers....
分类:其他好文   时间:2014-05-26 09:58:20    阅读次数:220
深入SDN(二):关于SDN/OpenFlow的学习&研究路线
我个人的理解:第一步:当然是SDN的history,这里主要指的是学术界的研究情况:The Road to SDN,Nick Feamster, Jennifer Rexford, 2013,从学术概念上讨论SDN这一路在时间轴上的演进Maturing of OpenFlow and SDNthro...
分类:其他好文   时间:2014-05-26 09:57:57    阅读次数:342
sed & awk
看到过的最好的一个讲解sed & awk的PPT http://www.cs.nyu.edu/~mohri/unix08/lect5.pdf 现在制作一个自己的版本的ls sed_ls_fmt s/^d/dir /1s/^-/file /1s/\([rwxs-]\{3\}\)\([rwxs-]\{3...
分类:其他好文   时间:2014-05-26 09:59:23    阅读次数:298
H264 各种profile
关键字:H264 ,base profile, main profile, extend profile, high profile。提到HighProfileH.264解码许多人并不了解,那么到底什么是HighProfileH.264解码?其应用效果又是如何呢?作为行业标准,H.264编码体系定义...
分类:其他好文   时间:2014-05-26 09:59:01    阅读次数:249
fine mobile crusher
The design concept of the mobile crushers is to combine the application of the machine and the environment protection effect.Industrial Belt Conveyor ...
分类:其他好文   时间:2014-05-26 10:00:08    阅读次数:228
WCF RestFul例子
这里没有理论上的东西,仅仅是做下记录。我这个例子偷懒下了,直接在VS2008里面建了个WCF服务应用程序一、接口,用WebGet的时候需要添加命名空间:System.ServiceModel;System.ServiceModel.Web;[ServiceContract] public in...
分类:其他好文   时间:2014-05-26 10:01:05    阅读次数:301
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!