哔哩哔哩2021校园招聘后端开发方向笔试卷A
时长:120分钟 总分:33分
197浏览 0人已完成答题
题型介绍
题型 | 单选题 | 填空题 |
---|---|---|
数量 | 30 | 3 |
括号匹配
在64位的机器上,如下所示的c代码中,sizeof(a)和sizeof(b...
以下函数的时间复杂度是voidfunc(intx,inty,intz){i...
void func(int x,int y, int z) { if (x <= 0) printf("%d, %d\n", y, z) else { func(x-1, y+1, z) func(x-1, y, z+1) } }
咖啡店销售系统具体需求为:咖啡店店员在卖咖啡时,可以根据顾客的要求加入各种...
关于下面的sql语句,描述正确的是有两张表Area和City的数据分别为:...
ID | Name |
1 | North |
2 | South |
3 | East |
4 | West |
ID | Name | AreaID |
1 | 北京 | 1 |
2 | 上海 | 2 |
3 | 广州 | 3 |
4 | 深圳 | 4 |
执行如下sql:
select * from City left join Area on City.AreaID = Area.ID where Area.ID>0 group by Area.ID having count(Region)>0 order by count(Region) desc limit 1