04 2019 档案
字节跳动笔试题
摘要:要求: 解答: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta ht 阅读全文
posted @ 2019-04-04 16:52 BLZC 阅读(341) 评论(0) 推荐(0)
pinyin.js
摘要:export default { a: "\u554a\u963f\u9515", ai: "\u57c3\u6328\u54ce\u5509\u54c0\u7691\u764c\u853c\u77ee\u827e\u788d\u7231\u9698\u8bf6\u6371\u55f3\u55cc\ 阅读全文
posted @ 2019-04-02 14:19 BLZC 阅读(3253) 评论(0) 推荐(0)
js实现输入某串数字,构建完全二叉树,并判断是否为二叉搜索树
摘要:思路:若为二叉搜索树,则中序遍历为递增的 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 阅读(304) 评论(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 阅读(284) 评论(0) 推荐(0)