《Effective C++ 》学习笔记——条款05 Know what functions C++ silently writes and calls...
分类:
编程语言 时间:
2014-11-03 22:36:27
阅读次数:
252
HDU 5095 Linearization of the kernel functions in SVM(模拟)...
分类:
其他好文 时间:
2014-11-02 19:41:18
阅读次数:
230
I/O操作对于每个系统来说都是必不可少的一部分。而且I/O操作的好坏,在一定程度上也会影响着系统的效率问题。今天我学习了一下在Redis中的I/O是怎么处理的,同样的,Redis在他自己的系统中,也封装了一个I/O层。简称RIO。得先看看RIO中有什么东西喽:
struct _rio {
/* Backend functions.
* Since this functions ...
分类:
其他好文 时间:
2014-11-02 10:56:10
阅读次数:
166
Functions
transition.newEasing(action, easingName, more)
为图像创造效果
transition.execute(target, action, args)
执行一个动作效果
transition.rotateTo(target, args)
将显示对象旋转到指...
分类:
其他好文 时间:
2014-10-30 15:24:28
阅读次数:
298
题意:给定两个字符串,求它们对齐匹配的最大值
要求:可以两个字符匹配,也可以一个字符和‘-’匹配,
但是不能两个‘-’匹配...
分类:
其他好文 时间:
2014-10-30 15:21:24
阅读次数:
227
当中用到一个宏定义CUDA_KERNEL_LOOP在common.hpp中有。#defineCUDA_KERNEL_LOOP(i,n) \for(inti = blockIdx.x * blockDim.x + threadIdx.x; \i __global__void mul_kernel(co...
分类:
其他好文 时间:
2014-10-29 21:02:10
阅读次数:
1037
/* Exercise: Loops and Functions #43 */package main import ( "fmt" "math") func Sqrt(x float64) float64 { z := float64(2.) s := float64(0)...
分类:
其他好文 时间:
2014-10-29 01:48:06
阅读次数:
282
PHP has a huge range of built-in functions designed to perform predefined tasks such as converting a string to upper case, getting the dimensions of a...
分类:
Web程序 时间:
2014-10-28 17:36:24
阅读次数:
150
Go functions may be closures. A closure is a function value that references variables from outside its body. The function may access and assign to the...
分类:
其他好文 时间:
2014-10-28 00:39:06
阅读次数:
191
Let's have some fun with functions.Implement afibonaccifunction that returns a function (a closure) that returns successive fibonacci numbers.package ...
分类:
其他好文 时间:
2014-10-28 00:37:06
阅读次数:
129