zoukankan      html  css  js  c++  java
  • 笔试题集

    笔试场上,刀刀致命

    1

    //1. 给定一个模板和一个对象,利用对象中的数据渲染模板,并返回最终结果。
    let template = '你好,我们公司是{{ company }},我们属于{{group.name}}业务线,我们在招聘各种方向的人才,包括{{group.jobs[0]}}、{{group["jobs"][1]}}等。'
    function render (template, obj) {}
    let obj = {
      group: {
        name: 'MI',
        jobs: ['前端']
      },
      company: 'BAT'
    }
    

    解答:
    借助evalmatchAll,借助eval动态执行代码,借助matchAll匹配:

    function render (template, obj) {
    // 代码实现
      const re = /{{s*(.+?)s*}}/g
      let results = template.matchAll(re)
      for (let match of results) {
        with (obj) {
          template = template.replace(match[0], eval(match[1]))
        }
      }
      return template
    }
    

    或者借助Function构造函数动态执行代码:

    function render (template, obj) {
    // 代码实现
      const re = /{{s*(.+?)s*}}/g
      return template.replace(re, function(match, $1) {
         let val = (new Function(`return this.${$1}`)).call(obj)
         return val
      })
    }
    

    2

    // 2. 完成 convert(list) 函数,实现将 list 转为 tree
    /**
     * @param list {object[]}, 
     * @param parentKey {string}
     * @param currentKey {string}
     * @param rootValue {any}
     * @return object
     */
    convert(list, 'parentId', 'id', 0)
    const list = [
      {
        'id': 19,
        'parentId': 0
      },
      {
        'id': 18,
        'parentId': 16
      },
      {
        'id': 17,
        'parentId': 16
      },
      {
        'id': 16,
        'parentId': 0
      }
    ]
    

    解答:

    function convert(list, parentKey, currentKey, rootValue) {
      const tree = {[currentKey]: rootValue}
      // 获取某一父节点的子节点
      function getChildren(leaf, pid) {
        let len = list.length
        for (let i = 0; i < len; i++) {
          let item = list[i]
          if (!item) continue
          if (item[parentKey] === pid) {
            if (leaf.children) {
              leaf.children.push(item)
            } else {
              leaf.children = [item]
            }
            list[i] = null
          }
        }
        if (list.some(item => item) && leaf.children) {
          for (let child of leaf.children) {
            getChildren(child, child.id)
          }
        }
        return leaf
      }
      return getChildren(tree, rootValue)
    }
    

    思路:先写一个通用的获取子节点的函数,然后递归调用。缺点,有副作用,会改变传入的list参数。

    3

    对数字的“重量”排序。如 ‘15’的重量是1+5=6。重量相同时,按字典序排序。
    '15 1 9 26' => '1 15 26 9'

    
    
  • 相关阅读:
    我要自学网asp.net学习第一天(课程概述)
    在eclipse中创建web项目(非myeclipse)
    2015-11-04 报表(c#部分)(Datatable 查询,弹出日期控件,输入是否整数)
    2015-11-04 asp.net 弹出式日历控件 选择日期 Calendar控件
    JSP 资源与网站
    2015-09-17 001 存储过程数据操作类 H_data_Helper
    2015-09-17 001 日志与对话框公用类_public
    20150916_018 插入行()
    20150916_001 vba 基础
    20150825 C# 调用带参数的存储过程 模板
  • 原文地址:https://www.cnblogs.com/imgss/p/12158946.html
Copyright © 2011-2022 走看看