摘要:
《The Three-Body Problem (Remembrance of Earth's Past)》 Cixin Liu 1146个笔记 The Madness Years ◆ Brigade ◆ Brigade ◆ greenhorns ◆ Proletarian ◆ stoves ◆ e 阅读全文
摘要:
《George R. R. Martin's a Game of Thrones 4-Book Bundle》 George R.R. Martin 495个笔记 ◆ PROLOGUE twilit edge hackles implacable hellbent destrier garrons. 阅读全文
摘要:
list转树 function filterArray(data, parent) { var tree = []; var temp; for (var i = 0; i < data.length; i++) { if (data[i].parent == parent) { var obj = 阅读全文
摘要:
第一道是仿JSON.parse json_parse("[12,[[3],45,6,7],8,9]") https://blog.51cto.com/u_11658127/3396506 直接从这简化 var json_parse = function () { var at = 0, // 当前字 阅读全文
摘要:
通过数组或者栈保存元素来实现 翻转链表,再打印 reversePrint = function(nodes){ let prev= null; let next= null; // let cur = nodes while(nodes){ next = nodes.next nodes.next 阅读全文