自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (5)
  • 收藏
  • 关注

转载 TCP---三次握手和四次挥手

本文转载自:http://blog.csdn.net/renzhenhuai/article/details/12105457 一、TCP报文格式         TCP/IP协议的详细信息参看《TCP/IP协议详解》三卷本。下面是TCP报文格式图: 图1 TCP报文格式         上图中有几个字段需要重点介绍下:         (1)序号:Seq序号,占

2016-09-17 13:23:04 271

原创 Leetcode-sqrt

题目描述 Implementint sqrt(int x). Compute and return the square root of x. public class Solution { public int sqrt(int x) { long start = 1; long end = x; wh

2016-09-16 23:45:39 260

原创 动态规划几个典型题总结

这是典型的三道动态规划,在笔试当中,有可能会被举一反三地考。 1、求一个数组最大连续子数组之和。       示例:int[] nums = {2,1,3,6,-10,5};  最大连续子数组是2,1,3,6,所以输出12。 2、求一个数组的最长递增子序列。       示例:int[] nums = {2,1,3,6,-10,5};    最长递增子序列是1,3,6,所以输出3。

2016-09-11 15:11:38 665

原创 Leetcode-interleaving-string

题目描述 Given s1, s2, s3, find whether s3 is formed by the interleaving of s1and s2. For example, Given: s1 ="aabcc", s2 ="dbbca", When s3 ="aadbbcbcac", return true. When s3 ="aad

2016-09-04 18:33:22 328

原创 Leetcode-distinct-subsequences

题目描述 Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence of a string is a new string which is formed from the original string by deleting

2016-09-04 16:52:04 325

原创 Leetcode-longest-substring-without-repeating-characters

题目描述 Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the l

2016-09-03 23:11:05 210

Android 暗黑模式,dark mode,demo源码

Android 暗黑模式,dark mode,demo源码。我们介绍了如何在Android上实现暗黑模式,也介绍了APP自主控制是否使用dark的方式

2020-04-29

疯狂java实战讲义

疯狂java实战讲义 PDF版 所有都是java的实际工程 帮助提高!

2015-11-20

java数据结构和算法第二版

java数据结构和算法第二版 中国电力出版社 Robert

2015-11-20

李刚疯狂Java讲义(第三版)讲义

这是李刚《疯狂java讲义》第三版光盘内容,包括完整的代码,你值得拥有!

2015-11-20

流水灯代码 51单片机

这是非常完善的51单片机流水灯程序,含丰富讲解!

2015-01-21

空空如也

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

TA关注的人

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