2019年10月23日

/*NR*/ 5g NR 38.300 (部分章节) 中文 翻译

摘要: 4.整体架构和功能区分 4.1 整体架构 NG-RAN 可以是: gNB:向 UE 提供 NR 用户平面和控制平面协议端接 ng-eNB: 向UE提供E-UTRA用户面和控制面协议端接 4.2 功能区分 gNb和ng-eNB承载如下功能: 无线资源管理功能:无线承载控制、无线接入控制、移动性控制、在 阅读全文

posted @ 2019-10-23 19:04 喜悦的凉白开 阅读(1602) 评论(0) 推荐(0) 编辑

2015年5月11日

/*std*/string类的实现,

摘要: 1 //class mstring 2 //function: 3 // friend function : 4 // +,>, 5 // member function: 6 // get_length,,==,printf... 阅读全文

posted @ 2015-05-11 19:18 喜悦的凉白开 阅读(183) 评论(0) 推荐(0) 编辑

2015年4月13日

/*剑指OFFER*/面试题1 赋值运算符函数

摘要: 如下为类型CMyString的声明,轻微该类型添加赋值运算符函数。class CMyString{public: CMyString(char*pData=NULL) ; CMyString(const CMyString& str); ~CMyString(void);private:... 阅读全文

posted @ 2015-04-13 19:09 喜悦的凉白开 阅读(110) 评论(0) 推荐(0) 编辑

/*拖延是种病得治*/

摘要: 1./*剑指Offer*/ 面试题1 赋值运算符函数2./*剑指Offer*/ 面试题3 二维数组中的查找3./*剑指Offer*/ 面试题4 替换空格4./*剑指Offer*/ 面试题5 从尾到头打印链表5./*剑指Offer*/ 面试题6 重建二叉树6./*剑指Offer*/ 面试题7 用两... 阅读全文

posted @ 2015-04-13 16:38 喜悦的凉白开 阅读(80) 评论(0) 推荐(0) 编辑

2015年4月5日

/*基本算法实现*/Linux中string.h里strcmp和strcpy函数的实现

摘要: string.hextern int strcmp(const char*,const char*);extern char* strcpy(char*,const char*);string.cint strcmp(const char *cs, const char *ct){ unsig... 阅读全文

posted @ 2015-04-05 14:56 喜悦的凉白开 阅读(383) 评论(0) 推荐(0) 编辑

2015年3月14日

/*程序员面试宝典*/Which of the following statements describe the results of executing the code snippet below in C++?

摘要: Which of the following statements describe the results of executing the code snippet below in C++?1 int i;2 3 void main()4 5 {6 7 int i = i;8 9 }A... 阅读全文

posted @ 2015-03-14 21:36 喜悦的凉白开 阅读(190) 评论(0) 推荐(0) 编辑

2015年3月11日

/*携程面试*/四个数组,都已经排好序,找出四个数组的交集

摘要: 首先找连个数组的交集,分别指定i,j指向连个数组头部,对i,j进行比较,i的值大于j的值,j++;i的值小于j的值,i++;相等,则保存;​然后再求连个交集的交集;复杂度应为O(M+N+P+Q)​//求数组a,b交集;交集存于a,并返回k,k为交集长度; 1 //求数组a,b交集;交集存于a,并返回... 阅读全文

posted @ 2015-03-11 21:34 喜悦的凉白开 阅读(608) 评论(1) 推荐(0) 编辑

导航