码迷,mamicode.com
首页 >  
搜索关键字:fun    ( 10813个结果
boost::bind的使用方法
bind - boost头文件: boost/bind.hppbind是一组重载的函数模板.用来向一个函数(或函数对象)绑定某些参数.bind的返回值是一个函数对象.它的源文件太长了. 看不下去. 这里只记下它的用法:9.1 对于普通函数假如有函数 fun() 如下:void fun(int x, ...
分类:其他好文   时间:2014-06-16 06:27:44    阅读次数:337
C++11 新特性之 变长参数模板
template void fun(ARGS ... args) 首先明确几个概念 1,模板参数包(template parameter pack):它指模板参数位置上的变长参数,例如上面例子中的ARGS 2,函数参数包(function parameter pack):它指函数参数位置上的变长参数,例如上面例子中的args 一般情况下 参数包必须在最后面,例如: tem...
分类:编程语言   时间:2014-06-15 13:37:16    阅读次数:363
Python中关于try...finally的一些疑问
最近看Vamei的Python文章,其中一篇讲异常处理的,原本看完没啥疑惑,或许是自己想的简单了。看到评论,一个园友的问题引起我的兴趣。他的问题是def func(x): try: return ++x finally: return x+1print fun...
分类:编程语言   时间:2014-06-15 06:47:20    阅读次数:228
hust 1511 Dominos 2
题目描述Dominos are lots of fun. Children like to stand the tiles on their side in long lines. When one domino falls, it knocks down the next one, which k...
分类:其他好文   时间:2014-06-13 08:09:51    阅读次数:318
回文距离求解
基于上面一篇博文的代码设计求的某个数的回文距离,所谓回文距离就是给定一个数,求这个数离与他最近的那个回文数的距离,例如123的回文距离为2,因为离123最近的回文数为121,所以123的回文距离为2,代码如下: #include #include #include using namespace std; bool fun(int); void main() { int val,val...
分类:其他好文   时间:2014-06-11 06:43:53    阅读次数:234
3n+1
对任何一个自然数n,如果它是偶数,那么把它砍掉一半;如果它是奇数,那么把(3n+1)砍掉一半。这样一直反复砍下去,最后一定在某一步得到n=1。编写程序要求:对给定的任一不超过1000的正整数n,简单地数一下,需要多少步(砍几下)才能得到n=1? 输入格式: 多组数据,每行一个整数0 代码如下: #include using namespace std; int fun(int); void...
分类:其他好文   时间:2014-06-10 14:59:11    阅读次数:167
独特区间的编程
所谓独特区间就是一个数组中若某一段区间中的数值都是两两不同的,那么这个区间就是独特区间,编程要求:输入两行,第一行为输入数组的元素的个数,第二行为数组的元素,以空格区分,输出为一行,包含一个整数为最终的答案。 代码如下 #include using namespace std; bool fun(int*,int); void main() { cout<<"please enter t...
分类:其他好文   时间:2014-06-10 14:09:51    阅读次数:186
hust 1260 Dominos && hust 1516 Dominos
题目描述Dominos are lots of fun. Children like to stand the tiles on their side in long lines. When one domino falls, it knocks down the next one, which k...
分类:其他好文   时间:2014-06-10 12:08:55    阅读次数:232
20140606
1、求一串字符串中连续出现次数最多的字串 #include#include#includeusing namespace std;pair fun(const string &str){ vector substrs; int maxcount=1,count=1; string substr; i...
分类:其他好文   时间:2014-06-10 00:18:57    阅读次数:266
事件绑定和阻止默认事件
一般 为了阻止默认事件,我们都用return false,但是 如果你用了事件绑定,return false在高版本浏览其中就会失效,但是低版本浏览器中还是可以的,我们可以使用事件对象里面preventDefault()方法来去解决高版本浏览器中事件绑定了无法用return false阻止默认事件的问题。 例如:取消鼠标右击后出现的默认菜单 document.oncontextmenu=fun...
分类:其他好文   时间:2014-06-08 03:52:20    阅读次数:380
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!