摘要: 教程 陈鑫杰视频教程:https://edu.51cto.com/course/3721.html 参考网站: https://www.wireshark.org/ http://www.wiresharkbook.com/ https://wiki.wireshark.org/ 阅读全文
posted @ 2019-04-03 13:27 Georgehu716 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 参考资料:https://blog.csdn.net/sxhelijian/article/details/50977946 不要迷信书本,要学会自己调试程序。 阅读全文
posted @ 2019-04-01 22:02 Georgehu716 阅读(560) 评论(0) 推荐(1) 编辑
摘要: 顺序查找 基本思想:从数组的首元素开始,将元素逐个与待查找的关键字进行比较,直到找到相等的为止。若整个数组中没有与待查找元素相等的元素,则查找不成功。时间复杂度 $ O(n)$。 int seqSearch(int a[], int n, int key) { for(int i = 0; i 阅读全文
posted @ 2019-03-31 21:02 Georgehu716 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 局部有序和整体有序 在由一组整数组成的序列A[0, n 1]中,满足 $ A[i 1] \leq A[i] $ 的相邻元素称为顺序的;否则是逆序的。 扫描交换 由有序序列的特征,我们可以通过不断改善局部的有序性实现整体的有序性:从前向后依次检查每一对相邻元素,一旦发现逆序即交换二者的位置。对于长度为 阅读全文
posted @ 2019-03-23 21:08 Georgehu716 阅读(465) 评论(0) 推荐(0) 编辑
摘要: you can find it on YouTube: "Learning English with EnglishClass101.com" 10 Habits of highly Effective Learners 1. Set small, measurable goals with dea 阅读全文
posted @ 2019-03-23 12:55 Georgehu716 阅读(838) 评论(0) 推荐(0) 编辑
摘要: 结果:凉。 虽然早知道结果,可是还是想试一试。自己基础知识是真的薄弱,学校的课根本没认真上,基本上都是半水过去的,自己没有认真做过的东西还是记不住的。 简历上一定要写自己真真写过弄懂得东西,一些吊儿郎当得还是不要写上去了。 打好基础,把学校课程弄明白了就已经很厉害了。 下面是电面的一些记录(同样,侵 阅读全文
posted @ 2019-03-19 21:13 Georgehu716 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 结果:凉。 说明 此博客仅为笔试记录所用,如涉及版权或保密问题,请联系我及时删除。 联系方式:georgehu716@qq.com 1. 找零 时间限制:C/C++ 1秒,其他语言 2秒 空间限制:C/C++ 32768K,其他语言 65536K 64bit IO Format: %lld 题目描述 阅读全文
posted @ 2019-03-16 11:45 Georgehu716 阅读(3155) 评论(0) 推荐(0) 编辑
摘要: Description Every email consists of a local name and a domain name, separated by the @ sign. For example, in alice@leetcode.com, alice is the local na 阅读全文
posted @ 2019-03-14 23:04 Georgehu716 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 学习地址 中文版: "Python 30分钟入门指南" 英文版: "Learn X in Y minutes" 学习时间 2019/03/10 19:00 19:32,多用了2分钟。 阅读全文
posted @ 2019-03-10 19:41 Georgehu716 阅读(330) 评论(0) 推荐(0) 编辑
摘要: Description Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. Example 1: Input: "Hello" Outp 阅读全文
posted @ 2019-03-09 22:48 Georgehu716 阅读(178) 评论(0) 推荐(0) 编辑