码迷,mamicode.com
首页 >  
搜索关键字:direct path write temp    ( 55479个结果
二级链动
protected void btnSend_Click(object sender, EventArgs e) { if (this.ddlSendName.SelectedValue == "-1") { Response.Write(""); return; } } protected vo....
分类:其他好文   时间:2014-07-19 17:35:22    阅读次数:164
java中的mmap实现--转
什么是mmap mmap对于c程序员很熟悉,对于java程序员有点陌生。简而言之,将文件直接映射到用户态的内存地址,这样对文件的操作不再是write/read,而是直接对内存地址的操作。 在c中提供了三个函数来实现 [list]mmap 进行映射munmap 取消映射msync 进程在映射空间的对共...
分类:编程语言   时间:2014-07-19 16:37:03    阅读次数:407
Uva 12889 One-Two-Three
Your little brother has just learnt to write one, two and three, in English. He has written a lot of those words in a paper, your task is to recognize...
分类:其他好文   时间:2014-07-19 09:31:41    阅读次数:238
myeclipse中的classpath
myeclipse中的classpath是一个很重要的问题 myeclipse的在查找的时候都是按照其查找,而且myeclipse有一个专门的文件来保存classpath的信息,这也是别人的项目拷贝的时候需要的一个重要文件,不然这个项目要导入到自己的myeclipse中就会发生错误,此时就只能是手工来编写这个文件   myeclipse的classpath文件就是项目根目录下的“.cla...
分类:系统相关   时间:2014-07-19 02:48:36    阅读次数:292
UVA Graph Coloring
题目如下: Graph Coloring  You are to write a program that tries to find an optimal coloring for agiven graph. Colors are applied to the nodes of the graph and the only availablec...
分类:其他好文   时间:2014-07-19 02:35:06    阅读次数:210
tomcat 和java环境配置的一些总结
使用比较新的版本的java和tomcat的时候配置环境变量的时候其实没有网上说的那么复杂JAVA配置的环境变量只有在Path的变量添加你的java的JDK目录就可以了C:\ProgramFiles\MicrosoftSQLServer\100\Tools\Binn\VSShell\Common7\IDE\;C:\ProgramFiles\MicrosoftVisualStudio9.0\Comm..
分类:编程语言   时间:2014-07-19 02:32:35    阅读次数:278
Java 连接 Oracle 数据库
一般在写完 import oracle.jdbc.driver.*; 语句后,就会发现报错。这时需要: 一、把JDBC驱动加入到classpath 两种方法。一是图形化,计算机-属性-高级设置-环境变量-   编辑PATH,加入 绝对路径\JDBC驱动名   如  C:\jdbc\lib\ojdc6.jar;  这里JDBC驱动有个版本的问题。                    ...
分类:数据库   时间:2014-07-19 02:11:26    阅读次数:169
windows下eclipse+hadoop2
windows下eclipse+hadoop2.4开发手册1.解压下载的hadoop2.4,到任意盘符,例如D:\hadoop-2.4.0。2.设置环境变量①新建系统变量,如下所示。②将新建的HADOOP_HOME变量“%HADOOP_HOME%\bin;”加入到PATH变量里,如下图。3.将had...
分类:Windows程序   时间:2014-07-18 22:14:51    阅读次数:525
【leetcode刷题笔记】Sum Root to Leaf Numbers
Given a binary tree containing digits from0-9only, each root-to-leaf path could represent a number.An example is the root-to-leaf path1->2->3which rep...
分类:其他好文   时间:2014-07-18 20:09:38    阅读次数:433
uva 1586 - Molar mass
在想更好的处理方法,现在却只能有这个糟烂的代码了……不好意思#include #include #include using namespace std; const int maxn=200; char s[maxn]; double ans[maxn]; int get_num(int pos,int len) { int temp; for(int i=pos;i<len...
分类:其他好文   时间:2014-07-18 18:07:51    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!