自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

杨领well的专栏

君子食无求饱,居无求安,敏于事而慎于言,就有道而正焉。

  • 博客(15)
  • 资源 (21)
  • 问答 (1)
  • 收藏
  • 关注

原创 TCP/IP协议(8): ICMP(Internet Control Message Protocol) 协议 ——诊断和控制 IP 协议层

TCP/IP协议(8): ICMP(Internet Control Message Protocol) 协议 ——诊断和控制 IP 协议层关于网际控制报文协议(Internet Control Message Protocol, ICMP)ICMP 数据包ICMP 报文的常见类型参考文献Internet Control Message Protocol - WikipediaW.R...

2018-10-09 21:23:29 3138

原创 TCP/IP协议(7): NAT(Network Address Translation) —— 解决 IPv4 地址短缺的问题

TCP/IP协议(7): NAT(Network Address Translation) —— 解决 IPv4 地址短缺的问题关于 NAT(Network Address Translation)随着互联网技术的发展,**因特网(Internet) **接入的网络设备越来越多,未分配的 IP 地址越来越少。网络地址转换(Network Address Translation, NAT) 通过...

2018-10-04 22:45:48 2530

原创 LeetCode: 232. Implement Queue using Stacks

LeetCode: 232. Implement Queue using Stacks题目描述Implement the following operations of a queue using stacks.push(x) – Push element x to the back of queue.pop() – Removes the element from in front of...

2018-10-24 11:06:48 145

原创 LeetCode: 228. Summary Ranges

LeetCode: 228. Summary Ranges题目描述Given a sorted integer array without duplicates, return the summary of its ranges.Example 1:Input: [0,1,2,4,5,7]Output: ["0->2","4->5","7"]Explanation: 0,...

2018-10-22 08:30:38 139

原创 LeetCode: 227. Basic Calculator II

LeetCode: 227. Basic Calculator II题目描述Implement a basic calculator to evaluate a simple expression string.The expression string contains only non-negative integers, +, -, *, / operators and empty s...

2018-10-21 17:17:31 116

原创 LeetCode: 225. Implement Stack using Queues

LeetCode: 225. Implement Stack using Queues题目描述Implement the following operations of a stack using queues.push(x) – Push element x onto stack.pop() – Removes the element on top of the stack.top(...

2018-10-19 08:28:06 133

原创 LeetCode:224.Basic Calculator

LeetCode:224.Basic Calculator题目描述Implement a basic calculator to evaluate a simple expression string.The expression string may contain open (and closing parentheses ), the plus + or minus sign -, n...

2018-10-18 08:00:38 183

原创 LeetCode: 223. Rectangle Area

LeetCode: 223. Rectangle Area题目描述Find the total area covered by two rectilinear rectangles in a 2D plane.Each rectangle is defined by its bottom left corner and top right corner as shown in the fig...

2018-10-15 08:01:14 126

原创 LeetCode: 222. Count Complete Tree Nodes

LeetCode: 222. Count Complete Tree Nodes题目描述Given a complete binary tree, count the number of nodes.Note:Definition of a complete binary tree from Wikipedia:In a complete binary tree every level,...

2018-10-14 10:17:42 110

原创 LeetCode: 221. Maximal Square

LeetCode: 221. Maximal Square题目描述Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area.Example:Input:1 0 1 0 01 0 1 1 11 1 1 1 11 0 ...

2018-10-13 10:40:43 116

原创 LeetCode: 220. Contains Duplicate III

LeetCode: 220. Contains Duplicate III题目描述Given an array of integers, find out whether there are two distinct indices i and j in the array such that the absolute difference between nums[i] and nums[j...

2018-10-10 08:01:45 192

原创 LeetCode: 219. Contains Duplicate II

LeetCode: 219. Contains Duplicate II题目描述Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the absolute...

2018-10-09 08:18:05 119

原创 LeetCode: 218. The Skyline Problem

LeetCode: 218. The Skyline Problem题目描述A city’s skyline is the outer contour of the silhouette formed by all the buildings in that city when viewed from a distance. Now suppose you are given the loca...

2018-10-08 08:32:07 325

原创 LeetCode: 216. Combination Sum III

LeetCode: 216. Combination Sum III题目描述Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be a unique s...

2018-10-02 09:18:56 95

原创 LeetCode: 215. Kth Largest Element in an Array

LeetCode: 215. Kth Largest Element in an Array题目描述Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.Exampl...

2018-10-01 19:41:02 111

Debugging with gdb.pdf

Debugging with gdb.pdf,【源码】RapidJSON 源码剖析(0.1):调试工具 GDB 的使用

2018-08-19

跟我一起写 Makefile

跟我一起写 Makefile,陈皓 本文由作者免费发布到网上,为了让更多人看到,我转载到我的CSDN 资源。 本应该免费的,但是 CSDN 规定所需下载资源分数至少为 1, 因此,暂且设为 1 吧。

2018-07-14

Gnu标准的make文档

The make utility automatically determines which pieces of a large program need to be recompiled, and issues commands to recompile them. This manual describes GNU make, which was implemented by Richard Stallman and Roland McGrath. Development since Version 3.76 has been handled by Paul D. Smith. 2018/7/5 GNU make http://www.gnu.org/software/make/manual/make.html#Search-Algorithm 14/248 GNU make conforms to section 6.2 of IEEE Standard 1003.2-1992 (POSIX.2).

2018-07-14

Algorithm Design(算法设计)中英 带目录

Algorithm Design(算法设计)中英 带书签目录 Kleinberg 科林伯格 高清

2018-01-12

The Vim Tutorial and Reference By Steve Oualline

The Vim Tutorial and Reference By Steve Oualline I'm not sure this book is a labor of love or a love of labor. It certainly is the longest book I've written. When I first started using Vim I noticed that there were a “few” commands that Vim had that it's the old Vi editor didn't have. So I decided to write a book which would serve as documentation to this wonderful editor. As part of my preparation I checked existing books for the Vi editor. They were about 150-200 pages long, so I figured that my book would turn out about 250-300 pages. Turns out that Vim has a lot more features than expected and as you can see the book is over 800 pages. The goal of this book is to provide a tutorial to show the reader how to use the power of Vim to solve common problems. Also the book attempts to show you visually the operation of very major command and option, and to fully document the rest. Unfortunately, I've had to impose some limits on the book. This book does not cover editing in any language but English mostly due to the fact that English is the only language I know. Also it does not cover the interfaces to external tools which I do not posses.

2017-12-20

垃圾回收算法与实现,Turling

垃圾回收算法与实现,Turling 高清 非扫描版 垃圾回收算法与实现,Turling

2017-12-08

Objective-C程序设计 第四版 高清

Objective-C程序设计 第四版Objective-C程序设计 第四版Objective-C程序设计 第四版Objective-C程序设计 第四版Objective-C程序设计 第四版Objective-C程序设计 第四版Objective-C程序设计 第四版Objective-C程序设计 第四版Objective-C程序设计 第四版

2017-12-07

The Transport Layer Security (TLS) Protocol V1.1

The Transport Layer Security (TLS) Protocol V1.1

2017-08-25

HTTP权威指南.pdf

HTTP权威指南.pdf

2017-07-28

图解HTTP 彩色版.pdf

图解HTTP 彩色版.pdf 只需要2积分

2017-07-26

思科的NAC说明(中文版).pdf

思科的NAC说明(中文版).pdf

2017-07-26

Komic, 将rar的漫画转化为pdf的神器

Komic, 将rar的漫画转化为pdf的神器。方便在电纸书看漫画。

2016-12-19

C++多线程编程中文版

C++多线程编程中文版

2016-12-19

第七届蓝桥杯大赛个人赛省赛(软件类)真题

第七届蓝桥杯大赛个人赛省赛(软件类)真题

2016-12-07

The_C++_Programming_Language,Special_Edition.

The_C++_Programming_Language,Special_Edition. C++编程语言英语

2016-07-09

Disk-Based_Container_Objects By Tom Nelson

Disk-Based_Container_Objects By Tom Nelson

2016-07-07

C++-MFC快速超简单入门

C++-MFC快速超简单入门

2016-05-25

2015年第六届蓝桥杯大赛个人赛决赛(软件类)真题

2015年第六届蓝桥杯决赛个人赛,C++ JAVA A B C组真题

2016-05-25

2014年第五届蓝桥杯大赛软件类C_C++ B组全国总决赛真题

2014年第五届蓝桥杯大赛软件类C_C++ B组全国总决赛真题.

2016-05-24

安装包制作

将VC写的程序制作成安装包。 不知道如何制作的这是教程http://teach.hanzify.org/article/696-1263372559.html

2015-07-26

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除