摘要: 思路:若为二叉搜索树,则中序遍历为递增的 let arr = [15,8,16,6,10];let pindex = [];function Node(){ this.root = null; this.left = null; this.right = null;} //构建完全二叉树functi 阅读全文
posted @ 2019-04-01 14:17 BLZC 阅读(302) 评论(0) 推荐(0)
摘要: 1. 一些常见的数据类型题 typeof undefined == typeof NULL typeof undefined typeof NULL typeof NULL "undefined" typeof function(){} "function" typeof class {} "fun 阅读全文
posted @ 2019-04-01 09:26 BLZC 阅读(280) 评论(0) 推荐(0)