如果让莎士比亚、海明威编写JavaScript代码
本文作者Angus Croll是Twitter工程师、JavaScript迷、文学迷,并且非常喜欢作家海明威。他在梦中"梦见"一些名人编写JavaScript代码,不同的作家呈现出各种编程风格,大家不妨一起来品尝下。
下面是对原文的摘译。
最近,我做了一个梦,我请海明威和其他四位文学名人替我编写JavaScript代码,一个函数返回一个给定长度的斐波纳契数列。有趣地是,他们每个人都以不同的方式完成了这一题,并且都做的很好——只是我想说,每个解决方案工作起来都好比广告(即使是Andre Breton的),后来我又请包括海明威在内的7名文豪用JavaScript来编写阶乘,似乎一切都那么神奇,但他们都成功地完成了,大家不妨来看看结果吧。
一、实现斐波纳契数列
1.欧内斯特·海明威(Ernest Hemingway 美国作家)
代表作:《老人与海》《太阳照样升起》《永别了,武器》《丧钟为谁而鸣》
function fibonacci(size) {
var first = 0, second = 1, next, count = 2, result = [first, second];
if(size < 2)
return "the request was made but it was not good"
while(count++ < size) {
next = first + second;
first = second;
second = next;
result.push(next);
}
return result;
}
简洁明了的代码,没有任何多余的字母和变量,没有精心设计的逻辑和聪明的变量命名,非常平淡地表明了它是做什么的,仅此而已,这就是海明威的魅力之处。
2.威廉·莎士比亚(William Shakespeare 英国诗人、戏剧家)
代表作: 《哈姆雷特》《奥赛罗》《李尔王》《罗密欧与朱丽叶》等
function theSeriesOfFIBONACCI(theSize) {
//a CALCKULATION in two acts.
//employ'ng the humourous logick of JAVA-SCRIPTE
//Dramatis Personae
var theResult; //an ARRAY to contain THE NUMBERS
var theCounter; //a NUMBER, serv'nt to the FOR LOOP
//ACT I: in which a ZERO is added for INITIATION
//[ENTER: theResult]
//Upon the noble list bestow a zero
var theResult = [0];
//ACT II: a LOOP in which the final TWO NUMBERS are QUEREED and SUMM'D
//[ENTER: theCounter]
//Commence at one and venture o'er the numbers
for (theCounter = 1; theCounter < theSize; theCounter++) {
//By divination set adjoining members
theResult[theCounter] = (theResult[theCounter-1]||1) + theResult[Math.max(0, theCounter-2)];
}
//'Tis done, and here's the answer.
return theResult;
//[Exuent]
}
大家可以看看莎士比亚是如何使用抑扬格五音步编写注释的。熟悉他戏剧的朋友应该对抑扬格五音步非常熟悉吧。
3.安德烈·布勒东(Andre Breton 法国诗人)
代表作:《超现实主义宣言》
function Colette(umbrella) {
var staircase = 0, galleons = 0, brigantines = 1, armada = [galleons, brigantines], bassoon;
Array.prototype.embrace = [].push;
while(2 + staircase++ < umbrella) {
bassoon = galleons + brigantines;
armada.embrace(brigantines = (galleons = brigantines, bassoon));
}
return armada;
}
整个解决方案的逻辑非常清晰、优雅,在galleons、brigantines、bassoons这三个之间,使用逗号操作符对它们进行同时转移。
4.罗贝托·波拉尼奥(Roberto Bolano 智利小说家、诗人)
代表作:《荒野侦探》《2666》
function LeonardoPisanoBigollo(l) {
if(l < 0) {
return "I'd prefer not to respond. (Although several replies occur to me)"
}
/**/
//Everything is getting complicated.
for (var i=2,r=[0,1].slice(0,l);i<l;r.push(r[i-1]+r[i-2]),i++)
/**/
//Here are some other mathematicians. Mostly it's just nonsense.
rationalTheorists = ["Archimedes of Syracuse", "Pierre de Fermat (such margins, boys!)", "Srinivasa Ramanujan", "Rene Descartes", "Leonhard Euler", "Carl Gauss", "Johann Bernoulli", "Jacob Bernoulli", "Aryabhata", "Brahmagupta", "Bhaskara II", "Nilakantha Somayaji", "Omar Khayyám", "Muhammad ibn Mūsā al-Khwārizmī", "Bernhard Riemann", "Gottfried Leibniz", "Andrey Kolmogorov", "Euclid of Alexandria", "Jules Henri Poincaré", "Srinivasa Ramanujan", "Alexander Grothendieck (who could forget?)", "David Hilbert", "Alan Turing", "von Neumann", "Kurt Gödel", "Joseph-Louis Lagrange", "Georg Cantor", "William Rowan Hamilton", "Carl Jacobi", "Évariste Galois", "Nikolay Lobachevsky", "Rene Descartes", "Joseph Fourier", "Pierre-Simon Laplace", "Alonzo Church", "Nikolay Bogolyubov"]
/**/
//I didn't understand any of this, but here it is anyway.
return r
/**/
//Nothing happens here and if it does I'd rather not talk about it.
}
长短不齐的段落,缺少分号,使用隐式全局变量——对每一个变量都做进一步深入的说明。
5. 查尔斯·狄更斯(Charles Dickens 英国小说家)
代表作:《匹克威克外传》《雾都孤儿》《 双城记 》等
function mrFibbowicksNumbers(enormity) {
var assortment = [0,1,1], tally = 3, artfulRatio = 1.61803; while(tally++ < enormity) {
//here is an exceedingly clever device
assortment.push(Math.round(assortment[tally-2] * artfulRatio));
}
//should there be an overabundance of elements, a remedy need be applied
return assortment.slice(0, enormity);
}
从代码中可以看出,他没有体会到斐波那契数列的基本理念,而是采用乘法解决。代码里也有些有趣的命名,但缺乏核心地理解。
二、实现factorial(n)阶乘
以上是这些著名的作家用JavaScript编写斐波那契数列,下面再让我们看看,作家们是如何用JavaScript/CoffeeScript编写factorial(n)的。
1. 杰克·凯鲁亚克(Jack Kerouac 美国小说家)
代表作:《在路上》《贩毒者》等
/*...the only numbers for me are the mad ones, take forty-three like a
steam engine with a talky caboose at the end*/ n = 43, /*and that lanky
fellow in a cocked fedora*/ r = 1 /*then back to our number, our mad
number, mad to become one*/ while (n > 1) /*mad to descend*/ n--, /*mad
to multiply*/ r = r * n /*and at the end, you see the blue center-light
pop, and everybody goes 1.4050061177528801e+51...*/
r
上面代码只能返回43的阶乘,如果想要实现另一个数的阶乘,你还需重写代码。不过,最值得注意地是,注释和代码几乎没有区别,无法分辨,从侧面反映了Kerouac的风格,很长、狂野和狂想式的流露。
2.塞缪尔·约翰逊(Samuel Johnson 英国作家、诗人)
代表作:《英语大辞典》《伦敦》《人类欲望的虚幻》等
# In which various NUMBERS are summon'd by
# means of ELECTRONICK CONJURY
factorial = (n) ->
# All argument is against it; yet all belief is for it
return 1 unless n
# Ingenious sophistry to prove the palp'bly OBVIOUS
return 1 if n is 1
# Recursion (n.)
# a program that calls 'pon itself in the manner of
# a dog returning unto its VOMIT
return n * factorial n - 1
整段代码比较稀疏,中间也掺杂着Johnson的精言妙语:其中,他也对factorial(0)应该为1进行了怀疑,他应该用一个完整的句子来表达factorial(1)就是1,从其字典里进行推测,完成了一个具有讽刺定义的递归解除。
Johnson的整个解决方案充满着艺术和模仿的结合——带有整洁表达式地温和的自我嘲讽和真正美丽的混合。
3.詹姆斯·乔伊斯(James Joyce 爱尔兰作家、诗人)
代表作:《尤利西斯》
function hacktorial(integette) {
var nonthings = [undefined, null, false, 0, '', NaN];
var resultution = 1; if (integette == 0) {
//behold the strangerous zeroine!
resultution = 1;
} else {
while (integette > 1)
//caligulate by multicapables
resultution = resultution * integette--;
}
with(resultution) {
var duodismal = Function('return this').call(toString(12));
var disemvowel = Function("n","return n?parseInt(n,12):'0'")
return [
disemvowel(duodismal.slice(0,-1)),
'shillings and',
disemvowel(duodismal[duodismal.length-1]), 'pence'
].join(' ');
}
//klikkaklakkaklaskaklopatzklatschabattacreppycrottygraddahappluddyappladdypkonpkot!
}
Joyce不仅仅是解决了阶乘问题,前半部分代码已经解决了这个问题,但Joyce坚决把结果转换为当时的货币:先令和便士。
结果:
hacktorial(3) //"0 shillings and 6 pence"
hacktorial(4) //"2 shillings and 0 pence"
hacktorial(7) //"420 shillings and 0 pence"
hacktorial(21) //"4257578514309120000 shillings and 0 pence"
4.理查德·费曼(Richard Feynman美国物理学家)
代表作:《费曼物理学讲义》《物理之美》
//using Ramanujan's approximation
function fractorail(n){
with(Math) {
var r = sqrt(PI)*pow(n/E,n);
r *= pow(8*pow(n, 3) + 4*(n*n) + n + 1/30, 1/6);
return r;
}
}
费曼的工作的特点是具有大胆的创意和非常古怪的才华,从它所编写的这段代码中也能看出。
结果,不要担心一些“舍入误差”,如果你非常熟悉JavaScript,你就应该知道:
fractorail(3); //6.00005
fractorail(1.1); //1.04671
fractorail(5.2); //169.40628
5. 阿瑟·柯南·道尔(Arthur Conan Doyle世界著名小说家)
代表作:《福尔摩斯探案集》《失落的世界》
"use strict";
//In solving a problem of this sort, the grand thing is to be able to reason backwards...
//some things are easier known than explained!
var caseHistory = new Object({2:2, 6:3});
function unfactorial(evidence){
//first, humility!
if (evidence === 1) {
return "Watson, I am at a loss!"
}
//second, logical precedence!
if(caseHistory[evidence]){
//elementary!
return caseHistory[evidence];
}
//third, eliminate the impossible!
if(evidence === 0 || evidence % 24 !== 0) {
return "charlatans!";
}
//fourth, deduction!
var theDeduction, enumarator = evidence, denominator = 1;
while(enumarator % denominator === 0) {
enumarator = enumarator/denominator++;
if (enumarator === denominator) {
theDeduction = enumarator;
}
}
theDeduction = theDeduction || "impostors";
//What one man can invent another can discover!
caseHistory[evidence] = theDeduction;
//What remains, however improbable, must be the truth!
return theDeduction;
}
正如大家想象的那样, 柯南道尔的设计过程是精确和认真有序的,此外,大家可能注意到,他让其应用程序在strict模式运行——容不得半点马虎。
6.简·奥斯汀(Jane Austen 英国小说家)
代表作:《理智与情感》 《傲慢与偏见》
factorial = (function() {
//I declare...
var ledger = {};
return function reckoning(quantity) {
if (isNaN(quantity)) {
console.log("I have not the pleasure of understanding you");
return;
}
//It is a truth universally acknowledged that two values
//can only be adjudged truly agreeable by means of ===
if (quantity === 0) {
return 1;
}
//Mr Crockford teaches that we be wary of inherited property...
if (ledger.hasOwnProperty(quantity)) {
return ledger[quantity];
}
//Pray persist until an answer is furnished
return ledger[quantity] = quantity * reckoning(quantity - 1);
};
})();
Jane Austen解决方案的亮点之一是代码工艺和结构的完整性,主要体现在代码块的整洁上,她调用模块模式,隐藏历史数据(或ledger)在上层结构的文件夹里;第二个则是体现了Jane Austen的俏皮,甚至是颠覆性的,对power的讽刺和荒谬的约定。
7. 欧内斯特·海明威(Ernest Hemingway 美国小说家)
代表作:《老人与海》《太阳照样升起》等
//Economy.
function factorial(n) {
return n < 2 ? 1: factorial(n-1)*n;
}
代码足以说明一切。
我们从中所学到的
这些著名的小说家、诗人、戏剧家的伟大之处在于他们勇于开拓新方式,尝试新的技术并且打破我们一直所遵循的规律。
最优秀的英语作家具有着对规则的蔑视。——Steven Pinker
JavaScript作为最流行的编程语言之一,它的进步取决于开发者们地大胆创新、研究以及发现新模式,这样才能惠及更多的人。
各位开发者们,如果让你们喜欢的作家来编写JavaScript代码会是啥样呢?不妨一起探讨下吧。
英文来源:Angus Croll博客
中文来源:WEB开发者(Admin10000.com)
如果让莎士比亚、海明威编写JavaScript代码的更多相关文章
- 莎士比亚电路ヾ(≧▽≦*)o
偶尔记录一件有趣的事儿! 这个电路叫做 "莎士比亚电路"[1],请自行参悟,ヾ(≧▽≦)o,ヾ(≧▽≦)o,ヾ(≧▽≦*)o ヾ(≧▽≦*)o . <穿越计算机的迷雾> ...
- Sequence Model-week1编程题2-Character level language model【RNN生成恐龙名 LSTM生成莎士比亚风格文字】
Character level language model - Dinosaurus land 为了构建字符级语言模型来生成新的名称,你的模型将学习不同的名字,并随机生成新的名字. 任务清单: 如何 ...
- NLP项目
GitHub NLP项目:自然语言处理项目的相关干货整理 自然语言处理(NLP)是计算机科学,人工智能,语言学关注计算机和人类(自然)语言之间的相互作用的领域.本文作者为自然语言处理NLP初学者整理了 ...
- 【转】【e周美文】优秀博客上榜推荐
Everybody,本周的博客推荐开始啦,记住,有好的博客可要给小活推荐一下哦. 7.19日 博客推荐 Android权限列表作者:@大漠落日 链接:http://my.eoe.cn/1103623/ ...
- 《英文写作指南 The elements of style》【PDF】下载
<英文写作指南 The elements of style>[PDF]下载链接: https://u253469.ctfile.com/fs/253469-231196361 The el ...
- 多邻国学英语 tips
来源: https://www.cnblogs.com/daysme整理了一分多邻国学英语中的相关语法文档. 地方 null 现在完成时 null 反身代词 浓缩的精华:反身代词就是 “XX 自己” ...
- Share Today
当问[一生中最大的错误是什么?]时,佛陀回答: 最大的错误就是你以为你还有时间 时间是免费的也是无价的 你无法拥有 但可以花费 而一旦失去 就无法挽回 一般人一生有78年 我们有28.3年在睡觉 几乎 ...
- 1.4《想成为黑客,不知道这些命令行可不行》(Learn Enough Command Line to Be Dangerous)——编辑命令
在编辑模式中,命令行包括几个重复之前命令的功能.这些以及其他很多命令功能时常设计键盘上的特殊键,所以给出Table 1作为参考,给出了许多键在典型的Macintosh键盘上的标记符号.若你的键盘不太一 ...
- redis教程(The little redis book中文版)
许可证 <The Little Redis Book>是经由Attribution-NonCommercial 3.0 Unported license许可的,你不需要为此书付钱. 你可以 ...
随机推荐
- 解决 winedit 打开tex文件 reading error
从网上下载的论文模板,发现直接双击打开.tex文件(默认关联用winedit打开)时会出现reading error,然后看不到任何文字(网上有人讨论打开是乱码的问题,但是我的是完全看不到任何东西), ...
- html字符实体对照表
- nyoj 21三个水杯(BFS + 栈)
题目链接: http://acm.nyist.net/JudgeOnline/problem.php?pid=21 思想: 看了一下搜索就来写了这题(BFS 找出最短路径 所以用此来进行搜索) 这题在 ...
- VS2012生成绿色版程序的方法
方法就是在工程属性里设置: 配置属性-〉常规-〉项目默认值-〉MFC的使用-〉在静态库中使用MFC,见下图 之后重新编译即可.
- 也许有用(也谈VC中ModifyStyle&ModifyStyleEx无法改变控件的Style)
一个View中用到了一个CListCtrl,在OnInitialUpdate函数里面他调用了m_listCtrl.ModifyStyleEx(0, LVS_EX_FULLROWSELECT);但是结 ...
- SPOJ 687 Repeats(后缀数组+ST表)
[题目链接] http://www.spoj.com/problems/REPEATS/en/ [题目大意] 求重复次数最多的连续重复子串的长度. [题解] 考虑错位匹配,设重复部分长度为l,记s[i ...
- HDU 2167 Pebbles
题目大意:有个N*N( 3<=N<=15 )方阵, 可从中若干个数, 使其总和最大.取数要求, 当某一个数被选, 其周围8个数都不能选. 题解:记s数组为合法状态,即没有相邻的数字同时被选 ...
- VS2010/MFC对话框:向导对话框的创建及显示
向导对话框的创建及显示 本节将为大家演示如何创建向导对话框. 仍然以前面的“加法计算器”的例子为基础,在其中加入向导对话框,我们可以用它来说明加法计算器的使用方法,一步一步引导用户操作,这也是比较常见 ...
- ios 中生成二维码和相册中识别二维码
iOS 使用CIDetector扫描相册二维码.原生扫描 原生扫描 iOS7之后,AVFoundation让我们终于可以使用原生扫描进行扫码了(二维码与条码皆可)AVFoundation可以让我们从设 ...
- HTML5 RPG游戏示例
演示地址 点击打开链接