摘要:
时间:2015-08-11 15:00 ~ 16:00地点:北京邮电大学鸿通楼类别:电面1. 问简历。2. 算法题:平台:collabedit/*1. 将 string 转化为 integer*/#include #include using std::string;string trim(cons... 阅读全文
摘要:
时间:2015-08-11 11:30 ~ 12:30地点:知春路甲48号盈都大厦B座11层今日头条1. 先对着简历的项目问了许多。2. 算法题:一个按顺序排好的数组,从某一个位置开始将后面的数移动到前面。例如,"123456789" -> 从第7个元素开始移动到最前面,"789123456", 在... 阅读全文
摘要:
Singleton设计模式。 阅读全文
摘要:
需要补充。。1. 注意虚函数的指针占4个字节。(当然是32位机器)#include #include #include #include using namespace std;class A {public: const int a;};class B {};class C {public:... 阅读全文
摘要:
时间:2015-08-11 10:00 ~ 11:30地点:知春路甲48号盈都大厦B座11层今日头条1. 二分查找算法我先写了一个递归的,然后面试官又让我写一个非递归的。递归:int BinarySearch(int A[], int from, int to, int target){ if... 阅读全文