码迷,mamicode.com
首页 > 其他好文
实现栈最小元素的min函数
1 #include 2 #include 3 using namespace std; 4 class min_stack 5 { 6 public: 7 void push(int); 8 void pop(); 9 int min();10 int size...
分类:其他好文   时间:2014-08-05 02:59:38    阅读次数:263
WCF自定义地址路由映射(不用svc文件)
一般在创建WCF服务时会用Serivce.svc文件访问,地址如:http://localhost/applicationname/Serivce.svc/Name 现在用路由映射成:http://localhost/applicationname/MyService/Name 方法如下: 首先在G...
分类:其他好文   时间:2014-08-05 02:59:18    阅读次数:207
sas,log,output,ods输出管理
1:改变log输出到指定外部文件log一般输出在log窗口,使用printto过程可以改变其默认输出位置proc printto log = "d:\log.txt" new; *将log输出到指定的文件中,new表示每次覆盖上一次,更多信息到时候查看帮助文档;proc print data=sas...
分类:其他好文   时间:2014-08-05 02:58:18    阅读次数:746
Uva-------(11462) Age Sort(计数排序)
BAge SortInput:Standard InputOutput:Standard OutputYou are given the ages (in years) of all people of a country with at least 1 year of age. You know ...
分类:其他好文   时间:2014-08-05 02:57:48    阅读次数:230
pssh 批量管理执行
pssh 是一个python写的批量执行工具,非常适合30台服务器以内的一些重复性的操作安装很简单,只要python版本2.4 以上的都行用这个工作最好把机器做做好ssh信任关系,不然很麻烦 每次执行 都需要输入密码[root@localhost ~]# wget https://pypi.pyth...
分类:其他好文   时间:2014-08-05 02:57:28    阅读次数:341
[leetcode]Gas Station
Gas StationThere areNgas stations along a circular route, where the amount of gas at stationiisgas[i].You have a car with an unlimited gas tank and it...
分类:其他好文   时间:2014-08-05 02:57:18    阅读次数:254
Parallel file system processing
A treewalk for splitting a file directory is disclosed for parallel execution of work items over a filesystem. The given work item is assigned to a wo...
分类:其他好文   时间:2014-08-05 02:57:08    阅读次数:456
Maven的学习资料收集--(一)环境搭建
这几天在做项目的时候用到了maven,但是自己没有从来没有接触过,所以咋网上找资料,终于找到了一下的资料,这个是别人总结的,我只是转载过来积累。请尊重原创。官网地址:http://maven.apache.org/下载地址:http://download.csdn.net/detail/joling...
分类:其他好文   时间:2014-08-05 02:56:38    阅读次数:253
A trip through the Graphics Pipeline 2011_13 Compute Shaders, UAV, atomic, structured buffer
Welcome back to what’s going to be the last “official” part of this series – I’ll do more GPU-related posts in the future, but this series is long eno...
分类:其他好文   时间:2014-08-05 02:56:18    阅读次数:427
百度地图 点击和标注拖拽后的经纬度
Hello, World 原文:http://blog.csdn.net/lybwwp/article/details/8127475
分类:其他好文   时间:2014-08-05 02:56:08    阅读次数:217
VS2012, opencv2.4.6环境搭建
原本的工作环境是在Linux下,环境很好弄,现在需要假设到windows上也搞一个opencv的服务,为方便调试,特意配置了下环境,记录如下:1.1 环境准备安装 Visual Studio 2012下载 opencv 2.4.6 (http://opencv.org/downloads.html)...
分类:其他好文   时间:2014-08-05 02:55:58    阅读次数:282
A trip through the Graphics Pipeline 2011_12 Tessellation
Welcome back! This time, we’ll look into what is perhaps the “poster boy” feature introduced with the D3D11 / Shader 5.x hardware generation: Tessella...
分类:其他好文   时间:2014-08-05 02:55:48    阅读次数:272
[leetcode]Candy
CandyThere areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following ...
分类:其他好文   时间:2014-08-05 02:55:38    阅读次数:179
ddk,wdk版本
2600 -- XpDDK 2600.1106 -- XP sp1 3790 -- 2003 DDK? 6000 -- WDK ? ? Windows 2003 SP1 DDK 支持以下Windows版本驱动程序开发 ? Windows Server 2003, SP1 (Standard, Enterprise, and DataCenter) ? ...
分类:其他好文   时间:2014-08-05 00:53:18    阅读次数:1364
Training的第十七天
做一个控制台程序,启动的时候从指定的网站上下载网址的背景图片,接着应用为桌面。这里面有一个关键的类(WebClient),看来一下这个类的成员及其使用语法,心里大概有了一些思路,接着就等着明天把这个程序写...
分类:其他好文   时间:2014-08-05 00:53:10    阅读次数:297
关于Apache的一些配置
首先(如果需要),将网站原来默认的www更目录更改为指定的位置: 将apache的配置文件中的c:/wamp/www/更改为e:/PHPProject/www/(更改两处) 使用apache配置多个站点的步骤: 1.修改httpd_vhost.conf(win:C:\wa...
分类:其他好文   时间:2014-08-05 00:52:58    阅读次数:285
Bootstrap 3.2.0 源码试读 2014/08/04
第一部分?normalize.css 用于解决不同浏览器下显示不一致的问题 8至12行 html?{ ??font-family:?sans-serif;????/*?设置默认字体为?sans-serif?*/ ??-webkit-text-size-adjust:?100%;????/*?...
分类:其他好文   时间:2014-08-05 00:52:48    阅读次数:331
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!