ahernzhan.com
二维三次Bezier样条曲线生成(基于EasyX的C++实现) | Yuheng's blog
http://www.ahernzhan.com/archives/151
Middot; Leave a comment. 二分搜索小结 – Binary Search Summary. Yuheng's blog 2016.
ahernzhan.com
Bezier | Yuheng's blog
http://www.ahernzhan.com/archives/tag/bezier
Middot; Leave a comment. Continue reading →. 二分搜索小结 – Binary Search Summary. Yuheng's blog 2016.
ahernzhan.com
微软STC 2014PM实习面经 | Yuheng's blog
http://www.ahernzhan.com/archives/148
Middot; Leave a comment. 微软的PM Program Manager 属于技术类,14年技术类笔试为四道类似ACM那样的编程题,然后还有一个性格测评。 第一个主要问题是挑了我独立完成的项目问细节,第二个主要问题是我做过的这么多项目中,最有挑战性的是哪个 为什么 然后围绕项目说了一堆,还仔细问了项目的idea怎么出来的,问我扮演了一个怎样的角色最后让我问她问题,我就问了经典的 PM职责 、 评价 ,面完之后听到她说稍后可能会跟你有个connection,我就觉得应该能过了。 是在什么情况下怎样的竞争关系 TOP10 按什么排序 这些我都没搞清楚,问了几次得到的解释都很模糊,理解不了问题到底是什么意思。 然后问了两个基础技术题 翻转字符串、SQL中的JOIN和LIFT JOIN作用 估计是二面知道了我的技术达不到研究生水平吧,我才大三 ,问了设计题 如何设计一个闹钟。 二维三次Bezier样条曲线生成 基于EasyX的C 实现 →. 二分搜索小结 – Binary Search Summary. Yuheng's blog 2016.
ahernzhan.com
微软 | Yuheng's blog
http://www.ahernzhan.com/archives/tag/微软
Middot; Leave a comment. 微软的PM Program Manager 属于技术类,14年技术类笔试为四道类似ACM那样的编程题,然后还有一个性格测评。 第一个主要问题是挑了我独立完成的项目问细节,第二个主要问题是我做过的这么多项目中,最有挑战性的是哪个 为什么 然后围绕项目说了一堆,还仔细问了项目的idea怎么出来的,问我扮演了一个怎样的角色最后让我问她问题,我就问了经典的 PM职责 、 评价 ,面完之后听到她说稍后可能会跟你有个connection,我就觉得应该能过了。 Continue reading →. Middot; Leave a comment. Case Time Limit: 1000ms. For this question, your program is required to process an input string containing only ASCII characters between ‘0’ and ‘9’, or between ‘a’ and ‘z’ (including ‘0’, ‘9’, ‘a’, ‘z’).
ahernzhan.com
Yuheng Zhan | Yuheng's blog
http://www.ahernzhan.com/archives/author/ahernzhan
Author Archives: Yuheng Zhan. 二分搜索小结 – Binary Search Summary. Middot; Leave a comment. 二分搜索作为最基本的算法之一,过去一直用最基本的recursive的写法,这就存在一个隐形的function calling stack的内存占用,严重的话还会导致stack overflow。 While loop binary search. Find the index of target. If not find, return -1. Find upper bound of the target. Target) return mid; / 判断是否上界 else if (array[mid] = target) e = mid - 1; else s = mid 1; } return -1; }. Find the upper bound of target. If not find, return -1. Binary search in a sorted but rotated array. Middot; Lea...
ahernzhan.com
多线程 | Yuheng's blog
http://www.ahernzhan.com/archives/tag/多线程
Middot; Leave a comment. Continue reading →. 二分搜索小结 – Binary Search Summary. Yuheng's blog 2016.
ahernzhan.com
基于TCP的并发多线程聊天室 | Yuheng's blog
http://www.ahernzhan.com/archives/157
Middot; Leave a comment. TCP Chat Room Server". TODO Auto-generated catch block. TODO Auto-generated catch block. TCP Chat Room Client". TODO Auto-generated catch block. TODO Auto-generated catch block. TODO Auto-generated catch block. 二分搜索小结 – Binary Search Summary. Yuheng's blog 2016.
ahernzhan.com
实习招聘 | Yuheng's blog
http://www.ahernzhan.com/archives/category/实习招聘
Middot; Leave a comment. Continue reading →. Middot; Leave a comment. 微软的PM Program Manager 属于技术类,14年技术类笔试为四道类似ACM那样的编程题,然后还有一个性格测评。 第一个主要问题是挑了我独立完成的项目问细节,第二个主要问题是我做过的这么多项目中,最有挑战性的是哪个 为什么 然后围绕项目说了一堆,还仔细问了项目的idea怎么出来的,问我扮演了一个怎样的角色最后让我问她问题,我就问了经典的 PM职责 、 评价 ,面完之后听到她说稍后可能会跟你有个connection,我就觉得应该能过了。 Continue reading →. Middot; Leave a comment. Case Time Limit: 1000ms. Your program should output string invalid input string when the input contains any invalid characters (i.e., outside the ’0′...Yuheng'...
ahernzhan.com
图形学 | Yuheng's blog
http://www.ahernzhan.com/archives/category/图形学
Middot; Leave a comment. Continue reading →. 二分搜索小结 – Binary Search Summary. Yuheng's blog 2016.
ahernzhan.com
2014美团技术岗位笔试 | Yuheng's blog
http://www.ahernzhan.com/archives/163
Middot; Leave a comment. 比如368*6=2208,表示为2- 2- 0- 8,返回头结点指针,结构体如下. Struct Node{ int num; Node *next; };. Node* multiply(Node* num, int digit) { cout "* * *处理步骤* * *" endl; Node *np = num; Node *np2; int flag = 0; if (np = NULL) return NULL; / 每一位数分别乘以这个个位数 while (np- next! NULL) { if (np2- num 9) { np- num = np2- num / 10; np2- num = np2- num % 10; flag = 1; break; } np = np2; np2 = np2- next; } } while (flag! 0); cout "* * * * * * * * " endl; return num; }. 比如输入12258,结果有5种 abbeh, abyh, aveh, lbeh, lyh。
SOCIAL ENGAGEMENT