自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 资源 (1)
  • 收藏
  • 关注

原创 Spring MVC on JBoss 7.1 final

How to Deploy simple Spring MVC on JBoss 7.1 Refer toSolution includes

2014-05-18 14:13:50 1056

原创 Cracking The Coding Interview 3rd -- 1.5*

Implement a method to perform basic string compression using the counts of repeated characters. For example, the string "aabcccccaaa" would become a2b1c5a3. If the "compressed" string would not become

2014-01-14 10:30:12 1128

原创 Cracking The Coding Interview 3rd -- 1.4

Write a method to replace all spaces in a string with '%20'. You may assume that the string has sufficient space at the end of the string to hold the additional characters, and that you are given the

2014-01-13 12:53:24 923

原创 Cracking The Coding Interview 3rd -- 1.3

Given two strings, write a method to decide if one is a permutation of the other.Solution 1:First, we need to compare if two strings have the same size, if different then they can't be permuta

2014-01-13 11:35:32 912

原创 Cracking The Coding Interview 3rd -- 1.2

Implement a function void resverse(char* str) in C or C++ which reverse a null-terminated string.Solution 1:We could implement the function in place with only one iteration by swapping First

2014-01-13 10:33:38 681 2

原创 Cracking The Coding Interview 3rd -- 1.1*

Implement an algorithm to determine if a string has all unique characters. What if you cannot use additional data structure?Solution 1: Using additional space. There are 256 possible character

2014-01-13 07:38:17 792

原创 Cracking The Coding Interview 3rd -- 00

www.CrackingTheCodingInterview.com

2014-01-12 12:49:45 679

原创 读书笔记01 Programming Interviews Exposed 3rd ed

Information about the book:authors@piexposed.comhttp://www.piexposed.comHow to use this book:1. After you read a problem, put the book down and try to work out the solution.2. If you get

2014-01-08 07:12:41 966

原创 OOP Design (Head First Design Patterns) 学习笔记--05 The factory Pattern

When you see "new", think "concrete"!1. Identify what varies2. Encapsulate object creationFactories handles the details of object creation.

2014-01-03 13:30:17 908

原创 OOP Design (Head First Design Patterns) 学习笔记--04 The decorator pattern

Design PrincipleClasses should be open for extension, but closed for modification.Goal is to allow classes to be easily extended to incorporate new behavior without modifying existing code.M

2014-01-03 00:05:17 896

原创 OOP Design (Head First Design Patterns) 学习笔记--03 Observer Pattern

Meet the Observer PatternPublishers + Subscribers = Observer PatternWe call the publisher the SUBJECT, and the subscribers theOBSERVERS.

2014-01-02 09:30:00 900

原创 OOP Design (Head First Design Patterns) 学习笔记--02 Summary One

The power of a shared pattern vocabularyShared pattern vocabularies are POWERFULPatterns allow you to say more with lessTalking at the pattern level allows you to stay "in the design" levelShare

2014-01-01 07:12:53 859

原创 OOP Design (Head First Design Patterns) 学习笔记--01 SimUDuck app

Sharpen your pencilCustomers want more features or new functionalistsCompany decided it is going with another database vendor and it is also purchasing its data from another supplier that uses a

2014-01-01 06:40:54 1215

空空如也

空空如也

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

TA关注的人

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