
数据结构+设计模式
文章平均质量分 92
数据结构 + 设计模式
weixin79893765432...
学而不思则罔,思而不学则殆。
展开
-
js 设计模式(23种)
一、工厂模式// 工厂模式——创建一个 div 标签function createDiv(w, h, bg){ var style = `width:${w}px;height:${h}px;background:${bg};`; return `<div style=${style}></div>`;}for(var i=0; i<3; i++){ document.write(createDiv(Math.random()*100, Ma原创 2020-06-21 22:56:55 · 15001 阅读 · 6 评论 -
js 数据结构
二叉树原创 2020-06-24 20:16:37 · 2516 阅读 · 2 评论