首页 > CVTE前端二面面经
头像
正义de键盘侠
编辑于 2021-01-15 14:19
+ 关注

CVTE前端二面面经

1、项目难点
2、100个http会有多少条TCP连接。
3、http2.0头压缩算法了解不
4、异步编程题
题目一
function queue(list){
        // 在这里填写。
}
  
function task1(next){
  setTimeout(function(){
    console.log(1);
    next();
  }, 10000)
}

function task2(next){

  console.log(2)
  next();
}

function task3(next){

  setTimeout(function(){
    console.log(3);
    next();
  }, 200)
}

queue([task1, task2, task3])  // 1 2 3
我自己的参考答案
// 参考答案
function queue(list){
  let fn = list.shift();
  fn(next);
  function next(){
    if(list.length === 0) return;
    let fn = list.shift();
    fn(next);
  }
}
题目二
function queue(list, count){

}
  
function task1(next){
  setTimeout(function(){
    console.log(1);
    next();
  }, 1000)
}

function task2(next){

  console.log(2)
  next();
}

function task3(next){

  setTimeout(function(){
    console.log(3);
    next();
  }, 200)
}
queue([task1, task2, task3], 2)  // 输出 2 3 1
我自己的参考答案
function queue(list, count){
  let array = list.splice(0,count);
  for(let fn of array) {
    fn(next);
  }
  function next(){
    let array = list.splice(0,count);
    for(let fn of array) {
      fn(next);
    }
  }
}
后续 ,最后沟通OC了。



更多模拟面试

全部评论

(4) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐