一、造成网络延迟的可能原因

1,WiFi所有用户上下行流量共用一个信道,当用户太多或者有人在下载大的资源时带宽不够,丢包;

2,线路质量不佳导致信噪比太低,比如光纤损耗太大等。

二、IPv6优势

1,IPv4地址不够用,IPv6有$2^{128}$个地址;

2,使用更小的路由表,转发速度更快;

3,扩充了DHCP协议,支持自动配置;安全性更高,有更好的头部格式,允许扩容......

三、找到单向无环链表的中间元素,若结点总数为偶数,返回第二个元素。

https://leetcode.com/problems/middle-of-the-linked-list/

只扫描一遍的做法:设两个指针,初始指向头结点,p1每次走两步,p2每次走一步,p1到达链尾,p2到达中间。假设链表带有头结点。

/*单链表定义*/
struct ListNode{
int val;
ListNode* next;
ListNode(int x) :val(x), next(NULL) {};
}; class Solution {
public:
ListNode * middle(ListNode* head)
{
if (head == NULL)
return NULL;
ListNode* fast = head;
ListNode* slow = head;
while (fast && fast->next)
{
fast = fast->next->next;
slow = slow->next;
}
return slow;
}
};

四、给出四个点坐标,判断是否是凸四边形

不妨扩展下该问题,给出任意n个点,判断是否凸多边形。

http://acm.hdu.edu.cn/showproblem.php?pid=2108

凸多边形就是所有内角均小于180°,方法有好几种,这里利用定点凹凸性判断:

设当前三个连续的顶点$P_0, P_1, P_2$,计算向量$P_0P_1$, $P_1P_2$的叉积,若结果为正,表示多边形顶点逆时针转;若结果为负,两向量夹角大于180°,则为凹多边形。

 #define _CRT_SECURE_NO_WARNINGS

 #include <cstdio>
#include <vector> using namespace std; struct point {
int x, y;
}p[]; int cross_p(point a, point b,point c)
{
return (b.x - a.x) * (c.y - b.y) - (c.x - b.x) * (b.y - a.y);
} bool isConvex(int n)
{
for (int i = ; i < n; i++)
{
//叉积量值
if (cross_p(p[i], p[(i + ) % n], p[(i + ) % n]) < )
return false;
}
return true;
} int main()
{
int n; while (scanf("%d", &n) && n)
{
for (int i = ; i < n; i++)
{
scanf("%d%d", &p[i].x, &p[i].y);
}
if (isConvex(n))
printf("convex\n");
else
printf("concave\n");
} return ;
}

五、两个位数在10万位以内的数乘法

https://leetcode.com/problems/multiply-strings/

高精度乘法,模仿我们笔算的过程。每一位$res[i + j]$的构成:$res[i + j] + carry + a[i] * b[j]$,注意去掉结果的前导0。

 class Solution {
public:
string multiply(string num1, string num2) {
int a[], b[], res[];
memset(a, , sizeof(a));
memset(b, , sizeof(b));
memset(res, , sizeof(res)); int lena = num1.size(), lenb = num2.size();
for (int i = ; i < lena; i++)
a[i] = num1[lena - i - ] - '';
for (int i = ; i < lenb; i++)
b[i] = num2[lenb - i - ] - ''; for (int i = ; i < lenb; i++)
{
int carry = ;
for (int j = ; j < lena; j++)
{
res[i + j] = res[i + j] + a[j] * b[i] + carry;
carry = res[i + j] / ;
res[i + j] %= ;
}
res[i + lena] = carry;
} int len_res = lena + lenb;
//去掉结果的前导0,若结果为0,保留一个0
while (res[len_res - ] == && len_res > )
{
len_res--;
}

       //使用字符串流将整数转为字符串
stringstream ans;
for (int i = len_res - ; i >= ; i--)
{
ans << res[i];
}
return ans.str();
}
};

六、其它

1,操作系统:CPU调度,用户态&内核态,IPC,各种锁,实时系统;

2,数据结构:判断有向图是否存在回路(拓扑排序、求最短路、关键路径、BFS),排序(快排、冒泡、选择、插入),链表是否有环;

3,计网:ARP、TCP/UDP、NAT、802.11ac协议,ping过程;

4,C++多态。

INTERVIEW #0的更多相关文章

  1. Jmeter(七)关联之JSON提取器

    如果返回的数据是JSON格式的,我们可以用JSON提取器来提取需要的字段,这样更简单一点 Variable names:保存的变量名,后面使用${Variable names}引用 JSON Path ...

  2. ZAM 3D 制作简单的3D字幕 流程(二)

    原地址:http://www.cnblogs.com/yk250/p/5663907.html 文中表述仅为本人理解,若有偏差和错误请指正! 接着 ZAM 3D 制作简单的3D字幕 流程(一) .本篇 ...

  3. ZAM 3D 制作3D动画字幕 用于Xaml导出

    原地址-> http://www.cnblogs.com/yk250/p/5662788.html 介绍:对经常使用Blend做动画的人来说,ZAM 3D 也很好上手,专业制作3D素材的XAML ...

  4. 微信小程序省市区选择器对接数据库

    前言,小程序本身是带有地区选着器的(网站:https://mp.weixin.qq.com/debug/wxadoc/dev/component/picker.html),由于自己开发的程序的数据是很 ...

  5. osg编译日志

    1>------ 已启动全部重新生成: 项目: ZERO_CHECK, 配置: Debug x64 ------1> Checking Build System1> CMake do ...

  6. Cracking The Coding Interview 9.0

    #include <iostream> #include <vector> using namespace std; void mswap(int &a, int &a ...

  7. Cracking The Coding Interview 2.0 单链表

    #include <iostream> #include <string> using namespace std; class linklist { private: cla ...

  8. Pramp mock interview (4th practice): Matrix Spiral Print

    March 16, 2016 Problem statement:Given a 2D array (matrix) named M, print all items of M in a spiral ...

  9. WCF学习系列二---【WCF Interview Questions – Part 2 翻译系列】

    http://www.topwcftutorials.net/2012/09/wcf-faqs-part2.html WCF Interview Questions – Part 2 This WCF ...

随机推荐

  1. python--算法相关

    一.时间复杂度排序 1.O(1) < O(logn) < O(n) < O(nlogn) < O(n^2) < O(n^3) < O(2^n) < O(n!) ...

  2. Oracle--pl/sql编程-分支语句(判断、循环)

    if语句 oracle: elsif      java: else if if (条件) then pl/sql或sql语句 [elsif (条件) then ] ...可以有多个elsif [el ...

  3. "多行文本"组件:<multi> —— 快应用组件库H-UI

     <import name="multi" src="../Common/ui/h-ui/text/c_text_multi"></impo ...

  4. alg-最长公共子串

    class Solution { public: const std::vector<std::string> LongestCommonSubstring(const std::stri ...

  5. PHP单例模式及应用场

    设计模式?听起来很高大上?的确是这样的.设计模式就是组织代码的方式,也就是说代码不再是一条条的往下执行,按照前人总结的行之有效的方法,更有效的来组织代码,这样效率更高,而且看起来也清晰有序. php单 ...

  6. myvue 模拟vue核心原理

    // js部分index.js class Myvue{ constructor(options){ this.data = options.data; this.dep = new Dep(); v ...

  7. IE各版本CSS Hack(兼容性处理)语法速查表

    为了兼容IE各个版本,需要在CSS中添加额外的代码,比如以前常用的_width.之所以工作,是因为浏览器会忽略不能解析的样式规则,因此举个例子来说,把_width写在width下面,对于非IE浏览器会 ...

  8. 小说光看还不够?用Python做有声小说!

    文的文字及图片来源于网络,仅供学习.交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理. PS:如有需要Python学习资料的小伙伴可以加点击下方链接自行获取http:// ...

  9. day22作业

    # 1.检索文件夹大小的程序,要求执行方式如下 # python3.8 run.py 文件夹 import os,sys l = sys.argv[1] size = 0 def get_size(f ...

  10. L7过拟合欠拟合及其解决方案

    1.涉及语句 import d2lzh1981 as d2l 数据1 : d2lzh1981 链接:https://pan.baidu.com/s/1LyaZ84Q4M75GLOO-ZPvPoA 提取 ...