码迷,mamicode.com
首页 >  
搜索关键字:add    ( 36740个结果
LeetCode: Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2014-06-28 14:31:12    阅读次数:201
Word Break II
Given a stringsand a dictionary of wordsdict, add spaces insto construct a sentence where each word is a valid dictionary word.Return all such possibl...
分类:其他好文   时间:2014-06-28 12:40:47    阅读次数:219
lua metatable和metamethod元表和元方法
Lua中提供的元表是用于帮助Lua数据变量完成某些非预定义功能的个性化行为,如两个table的相加。假设a和b都是table,通过元表可以定义如何计算表达式a+b。当Lua试图将两个table相加时,它会先检查两者之一是否有元表,然后检查该元表中是否存在__add字段,如果有,就调用该字段对应的值....
分类:其他好文   时间:2014-06-24 10:21:33    阅读次数:309
ubuntu安装和查看已安装
比如apt-cache show geditapt-cache show vim说明:由于图形化界面方法(如Add/Remove... 和Synaptic Package Manageer)比较简单,所以这里主要总结在终端通过命令行方式进行的软件包安装、卸载和删除的方法。一、Ubuntu中软件安装方...
分类:其他好文   时间:2014-06-24 08:54:14    阅读次数:338
android使用mina需要注意的问题
1.第三方jar包的使用 如果在Java Build Path中使用Add External JARs这种方式,运行时会有找不到类的错误(我的上面有,如果你没出现,恭喜你),上网查了几种方式,我这边运行通过的方式如下: 在项目中建个lib文件夹,把需要的jar包复制进去,在 Java Build P...
分类:移动开发   时间:2014-06-23 08:32:49    阅读次数:387
BZOJ 2434 最长公共子序列
题目链接:http://61.187.179.132/JudgeOnline/problem.php?id=2423题意:求两个串的LCS以及LCS的个数。思路:int f[2][N],g[2][N];char s[N],t[N];int n,m;void add(int &x,int y){ .....
分类:其他好文   时间:2014-06-23 07:43:17    阅读次数:354
MFC中浏览文件和浏览目录的实现[转]
1. 浏览文件 1 void CDlgCompare::OnBnClickedBtnSel() 2 { 3 // TODO: Add your control notification handler code here 4 UpdateData(TRUE); 5 CFil...
分类:其他好文   时间:2014-06-23 06:28:47    阅读次数:328
项目--后台代码提示
Page.ClientScript.RegisterStartupScript(GetType(), "", "");Response.Write("");this.LinkButton3.Attributes.Add("onclick", "return confirm('确定要删除吗?');")...
分类:其他好文   时间:2014-06-23 00:20:22    阅读次数:233
myeclipse安装svn插件的多种方式
开发者服务评测征文 十万现金悬赏大神方法一:在线安装 1.打开HELP->MyEclipse Configuration Center。切换到SoftWare标签页。 2.点击Add Site 打开对话框,在对话框Name输入Svn,URL中输入:http://subclipse.tigris...
分类:系统相关   时间:2014-06-23 00:02:51    阅读次数:358
重做日志文件组和重做日志文件组成员的管理
一、重做日志文件组:1、添加重做日志组的指令:alter database [数据库名称] add logfile[group 正整数] 文件名称 [,[group 正整数]文件名称]]不是有group选项时oracle系统会自动在当前最大的组号上加1来产生新的组号ex:alter databa.....
分类:其他好文   时间:2014-06-22 23:18:44    阅读次数:1096
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!