腾讯2016研发工程师笔试题(三)
时长:90分钟 总分:100分
141浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 14 | 16 |
在64位编译器下用sizeof(struct A)计算出的大小是多少
struct A{ long a1 short a2 int a3 int *a4 }
类似跳表的数据结构查找元素的时间复杂度是?
任务抢占
请选择下面代码的输出结果
#include <iostream> using namespace std int main(int argc, char*argv[]) { int a = 10 int b = 4 int c = a / b int d = c * a * b++ std:cout << d << std::endl return 0 }
请问下列代码的输出结果有可能是哪些()?
#include <stdint.h> #include <stdio.h> union X { int32_t a struct { int16_t b int16_t c } } int main() { X x x.a = 0x20150810 printf("%x,%x\n", x.b, x.c) return 0 }
如下代码,result变量的输出结果是多少?
#include<iostream> using namespace std int i=1 class MyCls{ public: MyCls():m_nFor(m_nThd),m_nSec(i++),m_nFir(i++),m_nThd(i++){ m_nThd=i } void echo(){ cout<<"result:"<<m_nFir+m_nSec+m_nThd+m_nFor<<endl } private: int m_nFir int m_nSec int m_nThd int &m_nFor } int main() { MyCls oCls oCls.echo() return 0 }
已知关系R(F,G,H,I,J)及其上的函数相关性集合,F=(F->G,J->F,HJ->I),该关系的候选关键字是:
win32系统里,下面几个sizeof的运行结果是()
int intValue=1024 char str[]="Tencent" const char* ch=str sizeof(intValue)=__a___ sizeof(str)=__b____ sizeof(ch)=____c___