主要来自 Scala 语言发明人 Martin Odersky 教授的 Coursera 课程 《Functional Programming Principles in Scala》。2. Higher Order Functions把其他函数作为参数或者作为返回值,就是 higher order...
分类:
其他好文 时间:
2014-07-07 23:27:55
阅读次数:
412
本人自己录制的swift菜鸟入门,欢迎大家拍砖,有什么问题可以在这里留言。 主要内容: 函数定义与调用(Defining and Calling Functions) 函数参数与返回值(Function Parameters and Return Values) 函数参数名称(Function Parameter Names) 函数类型(Function Types) 函数嵌套(Nested Fu...
分类:
其他好文 时间:
2014-06-30 16:35:58
阅读次数:
235
Blocks are a way to define a block of code that you will use at a later time.Sometimes people refer to blocks as anonymous functions because they are ...
分类:
其他好文 时间:
2014-06-30 15:21:04
阅读次数:
220
Functions and Closures 函数和封闭性(闭包)Functions 函数的使用Swift中的函数定义和OC中有明显的差别了,使用func定义函数,在括号里定义參数和类型,用 -> 定义返回值类型func greet(name: String, day: String) -> Str...
分类:
其他好文 时间:
2014-06-29 19:26:28
阅读次数:
209
4. Which two statements are true regarding single row functions? (Choose two.)A. They a ccept only a single argument.B. They can be nested only to two...
分类:
其他好文 时间:
2014-06-26 17:48:22
阅读次数:
216
最近在尝试使用Zsh,发现其补全命令的功能相当厉害。但对CMake命令的补全在默认的5.0.5中好像没有看到,网上找了下关于配置Zsh补全的文章也没有多少。 于是自己动手,发现在Zsh安装目录下有个functions的文件夹,里面都有以_开头的各种补全提示文件,比如_sed,_awk等,于是尝试.....
分类:
其他好文 时间:
2014-06-26 12:55:10
阅读次数:
199
题意读了半年,唉,给你两串字符,然后长度不同,你可以用‘-’把它们补成相同长度,补在哪里取决于得分,它会给你一个得分表,问你最大得分
跟LCS很像的DP数组 dp[i][j]表示第一个字符串取第i个元素第二个字符串取第三个元素,然后再预处理一个得分表加上即可
得分表:
score['A']['A'] = score['C']['C'] = score['G']['G'] = scor...
分类:
其他好文 时间:
2014-06-24 21:32:06
阅读次数:
185
// Copyright 2013 Yangqing Jia
//
#include
#include
#include "caffe/layer.hpp"
#include "caffe/vision_layers.hpp"
#include "caffe/util/math_functions.hpp"
using std::max;
namespace caffe {
/**...
分类:
其他好文 时间:
2014-06-24 19:34:27
阅读次数:
347
Menu.h#ifndef__MENU_h__#define__MENU_h__#include"Functions.h"/*目录结构体定义* /structMenuItem{shortMenuCount;char*DisplayString;void(*Subs)();structMenuItem...
分类:
其他好文 时间:
2014-06-22 12:08:36
阅读次数:
282
看到别人的好点子随时会进行相应修改: 1 # /etc/profile 2 3 # System wide environment and startup programs, for login setup 4 # Functions and aliases go in /etc/bash...
分类:
其他好文 时间:
2014-06-22 10:52:28
阅读次数:
256