[Functional Programming] Build a Linear congruential generator
What we are going to do in this post, is to build a random number generator. As you might know that Javascript provides Math.random(), but the problem for Math.random() is you cannot control it, what we actully want is a number generator which can provide the same sequence of random numbers. Imaging we have a game, everytime we start the game it will genarte
[5,7,9,8,1,3....]
Second times, it runs the game, it produce the same output: [5,7,9,8,1,3....]. This kind of number generator is called: Linear congruential generator
We are going to use 'crocks/State' to coding it:
const log = require('./lib/log'); const State = require('crocks/State'); const B = require('crocks/combinators/composeB'); const K = require('crocks/combinators/constant'); const prop = require('crocks/Maybe/prop'); const option = require('crocks/pointfree/option'); const {modify, get} = State; const assign = require('crocks/helpers/assign'); // pluckSeed :: Integer -> Object -> Integer const pluckSeed = def => B(option(def), prop('seed')) // rando : Integer -> State Object Float const rando = x => { const seed = (1103515245 * x + 12345) & 0x7fffffff const value = (seed >>> 16) / 0x7fff; return modify(assign({seed})) // update the seed Pair(_, seed) .map(K(value)); // update the value Pair(value, seed) } // pullRandom :: Integer -> State Object Float const pullRandom = defSeed => get(pluckSeed(defSeed)).chain(rando); // limitIndx :: Integer -> Float -> Integer const limitIndx = len => x => (x * len) | 0; const seed = 76; log( State.of(seed) .chain(pullRandom) // 'Pair( 0.13864558854945525, { seed: 297746555 } )' .map(limitIndx(52)) // 'Pair( 7, { seed: 297746555 } )' .runWith({seed: 10}) );
Let's explain some operator a little bit:
const B = require('crocks/combinators/composeB');
'composeB', the same as 'compose' read from right to left, the only difference is it only accepts two functions! no more no less.
// pluckSeed :: Integer -> Object -> Integer const pluckSeed = def => B(option(def), prop('seed'))
'pluckSeed', we use 'prop' from 'Maybe', to get value from Maybe, we need to use 'option', if Maybe returns Nothing, then we use the default value from 'option(def)'.
const State = require('crocks/State'); const {modify, get} = State; // rando : Integer -> State Object Float const rando = x => { const seed = (1103515245 * x + 12345) & 0x7fffffff const value = (seed >>> 16) / 0x7fff; return modify(assign({seed})) // update the seed Pair(_, seed) .map(K(value)); // update the value Pair(value, seed) }
'modify' it a constructor' method for 'State' moand, the State monad is constructed by Pair moand:
State(Pair(a, s))
On the left side, 'a' is the new state which come from 's' after mapping to some function. 's' is the origianl state.
When you call 'modify', it is actually modifying the right side 's':
modify(assign({seed})) // update the seed Pair(_, seed)
When you call .map(fn), it is change the value on the left side of Pair:
return modify(assign({seed})) // update the seed Pair(_, seed) .map(constant(value)); // update the value Pair(value, seed)
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
2016-03-16 [Javascript] lodash: memoize() to improve the profermence
2016-03-16 [AngularJS] Transforming raw JSON data to meaningful output in AngularJS