最近测试了一下 erlang的坑...
如不出意外....
大家第一眼看到这语法...
心里第一句一定是"我擦.这TM都是啥!!!!!"
没有变量!!!
没有结构体!!!
没有循环!!!
好吧,至少我是这样想的.
找了半天..连个if也不知道怎么写..
这记录一些基本常识..
-module(module_name) %%定义模...
分类:
其他好文 时间:
2014-07-31 23:57:20
阅读次数:
454
本文分析虚函数的小秘密,通过几个case说明为了支持虚函数,应该有什么样的约定,生成什么样的代码。...
分类:
其他好文 时间:
2014-07-31 17:10:36
阅读次数:
166
题目链接:http://poj.org/problem?id=2823
Sliding Window
Time Limit: 12000MS
Memory Limit: 65536K
Total Submissions: 38315
Accepted: 11350
Case Time Limit: 5000MS...
weeknum = weekDay(now)select case weeknum case "1" data="星期天" case "2" data="星期一" case "3" data="星期二" case "4" data="星期三" case "5" data="星期四" cas...
分类:
其他好文 时间:
2014-07-31 12:48:16
阅读次数:
206
昨天写 Scala 的时候,使用 match(相当于 switch)时,运行结果很奇怪。var i: Int = 0while (i println("offset: " + items(i)) case logSize => println("logSize: " + items(i)) c...
分类:
其他好文 时间:
2014-07-31 12:11:36
阅读次数:
219
Cube Stacking
Time Limit: 2000MS
Memory Limit: 30000K
Total Submissions: 18858
Accepted: 6547
Case Time Limit: 1000MS
Description
Farmer John and Betsy are playi...
分类:
其他好文 时间:
2014-07-31 09:52:16
阅读次数:
214
基础语句 #region switch case // int Number=char.Parse(Console.ReadLine()); // switch (Number) //{ // case 1: // Console.WriteLine("1"); // break; /...
分类:
其他好文 时间:
2014-07-31 09:48:06
阅读次数:
305
Just corner case..class Solution {public: ListNode *reverseBetween(ListNode *head, int m, int n) { if(m == n) return head; ListNode *...
分类:
其他好文 时间:
2014-07-31 09:34:05
阅读次数:
245
//参数过滤$sVariablesOrder=ini_get(‘variables_order‘);$request=array();//过滤不安全数据for($i=0;$i<strlen($sVariablesOrder);$i++){$cVariableFlat=strtolower($sVariablesOrder[$i]);switch($cVariableFlat){case‘e‘:$filtered=filter_input_array(INPUT_ENV,FILTER..
分类:
Web程序 时间:
2014-07-31 03:14:16
阅读次数:
275
问题描述:
You are climbing a stair case. It takes n steps to reach to the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
解题思路:
这是一个典型的斐波那契数列,对于...
分类:
其他好文 时间:
2014-07-31 00:02:55
阅读次数:
243