自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(64)
  • 资源 (4)
  • 收藏
  • 关注

原创 EPI: hash tables

A hash table is a data structure used to implement the associative array, a structure that can map keys to values.

2014-07-20 16:58:10 628

原创 EPI:Sorting

(1) Most efficient sorting algorithm for each situation-

2014-07-19 20:37:13 755

原创 EPI: 二叉搜索树

14. Binary Search Tree

2014-07-19 14:23:46 572

原创 Leetcode优化:Longest Common Prefix

Longest Common Prefix

2014-07-19 10:51:42 494

原创 Leetcode优化:Convert a binary tree to linked list

Flatten Binary Tree to Linked List

2014-07-17 21:00:57 618

原创 Leetcode优化:Validate Binary Search Tree

Validate Binary Search TreeExploi

2014-07-17 16:36:25 727

原创 Leetcode优化:Construct Binary Search Tree

1.Convert Sorted List to Binary Search Tree

2014-07-17 13:59:48 707

原创 电路交换、报文交换和分组交换

网络交换技术共经历了4个发展阶段,电路

2014-07-12 11:45:33 1397

原创 基本HTTP流程

HTTP是Hyper Text Transfer Protocol(超文本协议)

2014-07-12 11:25:49 561

原创 阻塞模式与非阻塞模式

使用socket编程实现数据传输的过程,通常的默认设置假设套接字是

2014-07-12 11:02:54 3121

原创 Python入门

Python Syntax       --Variables       --Data types, such as numbers and booleans (True or False)       --Whitespace (structure the code)       --Comment (单行# 多行’’’ ‘’’)       --Math operatio

2014-06-11 15:46:05 638

原创 PHP入门

IntroductionTo PHP       -- PHP is a programming language that doall sorts of things    -- PHP包含在中    -- PHP语句后面要加分号;语法更多的像C    -- Echo函数输出字符等有效表达式, echo “hahaha”;  echo 3+5;    -- 字符串一般都用双引

2014-06-11 15:37:19 580

原创 图解TCP/IP

1. 逻辑意义上的端口划分   1)按端口号分布划分      0-1023 知名端口: 21:ftp 22:SSH 23:Telnet 25:SMTP 53:DNS 80:HTTP 135:RPC(远程过程调用) 1024-65535 动态端口   2)按协议类型分类      TCP端口:FTP21 Telnet23 SMTP25 HTTP80 UDP端口:DNS5

2014-06-11 15:25:46 681

原创 Mysql的权限系统介绍

一个MySQL系统可能有多个用户。为了安全起见,root用户通常zhiyon

2014-06-11 15:06:28 1003

原创 Web数据库框架

Web服务器的基本ca

2014-06-11 11:28:44 1219

原创 Leetcode中几道二叉树题 (IV)

四、树上的路径和

2014-05-25 22:43:32 484

原创 Leetcode中疯狂的matrix

题目一:s

2014-05-25 21:11:09 643

原创 Leetcode中的intervals

题目一:Merge IntervalsGiven a collection of intervals, merge all overlapping inter

2014-05-25 20:40:49 537

原创 Leetcode中几道二叉树题 III

三、树的层次/序列化题目六:Populating Next Right Pointers in Each NodeGiven a binary tree, populating each next pointer to pointer to its right node. If there is no next right node, the next pointer should be

2014-05-25 19:46:24 459

原创 Leetcode中几道二叉树题 II

三、平衡二叉树 (Balanced Binary Tree)题目九:Balanced Binary TreeGiven a binary tree, determine if it is height-balanced. For this problem, a height-balanced tree is defined as a binary tree in which the dep

2014-05-25 19:44:27 485

原创 Leetcode中几道二叉树题 I

二叉树的题很多,但是大多都能用递归的方法解决。一、有序数组或链表转换成BST题目一:Convert Sorted List to Binary Search TreeGiven a singly linked list where elements are sorted in ascending order, convert it to height balanced BST

2014-05-25 19:24:44 595

原创 Leetcode中几道链表题

继数组之后,Linklist算是第二基础的数据结构吧,写代码的时候思路清晰就好

2014-05-24 17:33:23 534

原创 Leetcode中的二分算法

Leetcode中有很多衍变的二叉查找算法

2014-05-24 00:11:32 545

原创 Leetcode中二叉树的遍历

二叉树的遍历,不管是recursive版的还是iterative版的,应该都是

2014-05-23 10:37:55 564

原创 Leetcode中的大整数

大整数的运算基本就是对数组ji

2014-05-22 23:08:50 900

原创 Leetcode中一维数组与应用II

一、最大序列题目一:Gas StationThere are N gas stations along a circular route, where the amount of gas at station i is gas[i].  You have a car with unlimited gas tank and it cost cost[i] of gas to travel f

2014-05-22 21:25:27 523

原创 Leetcode中一维数组与应用I

一维数组虽然是最基础的数据结构,但是题目技巧性qu

2014-05-22 16:54:37 590

原创 Leetcode中字符串与子串 I

求子串应该也是字符串题目的一大分支吧。

2014-05-21 17:53:37 833

原创 Leetcode中字符串与模式匹配II

模式匹配也算是字符串中比较难得题目了吧,动不动就是TLE。

2014-05-21 14:41:29 643

原创 Leetcode中两个字符串匹配

字符串的匹配问题很多得依靠DP

2014-05-21 13:41:47 1137

原创 Leetcode中括号题

想到括号问题,我最熟悉的是用stack来判断一个括号序列是否w

2014-05-20 21:08:03 508

原创 Leetcode中回文题

这篇文章专门看Leetcode中回文的题目,

2014-05-20 20:21:44 594

原创 Leetcode中的几何问题

几何问题的解法也没什么固定模式题目一:

2014-05-20 16:03:31 846

原创 Leetcode中字符串与break(一)

字符串一直以来都是我不擅长处理的题目,解题思路

2014-05-19 23:18:59 478

原创 Leetcode中图的遍历

Leetcode中有两道题涉及到图的遍历,

2014-05-19 21:36:53 1366

转载 leetcode difficulty and frequency distribution chart

Here is a difficulty and frequency distribution chart for each problem (which I got from the Internet and is very useful).Dynamic ProgrammingEdit DistanceMaximum SubarrayMinimum Path SumUniq

2014-05-13 20:51:20 972

转载 (程序员)面试题的构成和分类

首先声明一下,这里的面试题主要所指数据结构和算法的题目,题目的分析集中在Leetcode上面的题目上。

2014-04-27 22:22:13 644

转载 Binary search and its variation

1.   IntroductionWriting correct programs is not an easytask, especially for some problems that require particularly careful code, likebinary search. Knuth points out that while the first binary sea

2014-04-27 13:47:32 566

原创 C/C++动态存储器分配

1. mmap和munmapmmap将一个文件或者其它对象映射进内存。文件被映射到多个页上,如果文件的大小不是所有页的大小之和,最后一个页不被使用的空间将会清零。

2014-04-26 12:27:39 748

转载 df、du、fdisk:Linux磁盘管理三板斧的使用心得

源地址1.dfdf命令可以获取硬盘被占用了多少空间,目前还剩下多少空间等信息,它也可以显示所有文件系统对i节点和磁盘块的使用情况。df命令各个选项的含义如下: -a:显示所有文件系统的磁盘使用情况,包括0块(block)的文件系统,如/proc文件系统。 -k:以k字节为单位显示。 -i:显示i节点信息,而不是磁盘块。 -t:显示各指定类型的文件系统的磁盘

2014-04-25 17:35:09 4078

随机过程及应用习题集

随机应用过程 习题集 清华大学 张晓军

2012-10-17

计算机系统结构 量化研究方法(第四版) 习题答案

计算机体系结构-量化研究方法第四版 中文版 习题答案 很多习题跟第五版相似 可参照解答

2012-10-10

MySQL默认字符字符集描述问题

MySQL的字符集支持(Character Set Support)有两个方面: 字符集(Character set)和排序方式(Collation)。 对于字符集的支持细化到四个层次: 服务器(server),数据库(database),数据表(table)和连接(connection)。

2010-05-29

空空如也

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

TA关注的人

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