自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

zephyr_be_brave的专栏

面试题笔记

  • 博客(236)
  • 收藏
  • 关注

原创 Recover Binary Search Tree

Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using O(n) space is pretty straight forward. Could you devise a

2013-09-01 21:03:13 564

转载 Morris Traversal方法遍历二叉树(非递归,不用栈,O(1)空间)

转自http://www.cnblogs.com/AnnieKim/archive/2013/06/15/MorrisTraversal.html文主要解决一个问题,如何实现二叉树的前中后序遍历,有两个要求:1. O(1)空间复杂度,即只能使用常数空间;2. 二叉树的形状不能被破坏(中间过程允许改变其形状)。通常,实现二叉树的前序(preorder)、中

2013-09-01 15:04:58 1246

原创 Sudoku Solver

Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character '.'.You may assume that there will be only one unique solution.A sudoku

2013-08-30 15:29:10 681

原创 Palindrome Partitioning II

Given a string s, partition s such that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning of s.For example, given s = "aab",Re

2013-08-30 14:16:28 699

原创 Palindrome Partitioning

Given a string s, partition s such that every substring of the partition is a palindrome.Return all possible palindrome partitioning of s.For example, given s = "aab",Return [ ["a

2013-08-28 11:52:53 534

原创 Largest Rectangle in Histogram

Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram.Above is a histogram where width

2013-08-26 21:06:07 573

原创 Interleaving String

dynamic programming (correct):class Solution {public:    bool isInterleave(string s1, string s2, string s3) {        // Start typing your C/C++ solution below        // DO NOT write int main

2013-08-25 23:38:37 547

原创 Rotate List

Given a list, rotate the list to the right by k places, where k is non-negative.For example:Given 1->2->3->4->5->NULL and k = 2,return 4->5->1->2->3->NULL.和求倒数第k个节点的那道题差不多,都是用fast和slow指针

2013-04-07 00:26:55 486

原创 Sqrt(x)

Sqrt(x)Apr 3 '12Implement int sqrt(int x).Compute and return the square root of x.第一种是比较直观的想法,就是二分找平方根,代码如下:class Solution { public: int sqrt(int x) {

2013-03-27 00:04:42 642

原创 Implement strStr()

Implement strStr()Feb 18 '12Implement strStr().Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack.KMP算法,O(m+n)的时间复杂度。class

2013-03-25 11:03:20 572

原创 Palindrome Number

Palindrome NumberJan 4 '12Determine whether an integer is a palindrome. Do this without extra space.Some hints:Could negative integers be palindromes? (ie, -1)If you are thinki

2013-03-10 11:29:13 488

原创 4Sum Problem

4SumJan 27 '12Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of t

2013-03-03 23:33:20 384

转载 白话并发冲突与线程同步(2)——Monitor、lock和死锁

白话并发冲突与线程同步(2)——Monitor、lock和死锁转自http://www.cnblogs.com/1-2-3/archive/2008/06/02/colloquialism-thread-synchronization-part2-monitor-lock.html     竞赛暂时胜过它的目的,永远如此。对于要建立殖民地的殖民主义者,生活的意义就在于征服。士兵看不起移

2013-10-27 21:21:07 754

转载 互斥锁,信号量,条件变量,临界区

原子操作共享数据(全局变量或堆变量)的自增(++)操作在多线程环境下会出现错误是因为这个操作(一条c语句)被编译为汇编代码后不止一条指令,因此在执行的时候可能执行了一半就被调度系统打断,去执行别的代码。我们把单指令的操作称为原子的(Atomic),因为无论如何,单条指令的执行是不会被打断的。为了避免出错,很多体系结构都提供了一些常用操作的原子指令,例如i386就有一条inc指令可以

2013-10-27 21:07:42 2607

原创 NP,NPC,NPH,强NPC问题

图和部分内容转自http://www.cnblogs.com/jpcflyer/archive/2012/04/15/2450622.html一、相关概念  P: 能在多项式时间内解决的问题  NP: 不能在多项式时间内解决或不确定能不能在多项式时间内解决,但能在多项式时间验证的问题  NPC: NP完全问题,1)这类问题中任何一个问题至今未找到多项式时间算法;2)如果这类

2013-10-27 11:51:41 6981

原创 二叉树的非递归遍历

需要借助栈来实现的方法,空间复杂度为O(N),空间复杂度为O(1)的见另一篇#include#include#includeusing namespace std;struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), lef

2013-10-26 16:06:22 549

原创 Hardwood Species

http://poj.org/problem?id=2418#include#includeusing namespace std;#define STR_LINE 35#define SPACE 32struct Node{ int cnt; bool isWord; Node* next[96]; Node(){ cnt = 0; isWord =

2013-10-21 16:24:47 638

原创 Shortest Prefixes

http://poj.org/problem?id=2001trie树基础代码:数组存储#include#includeusing namespace std;#define MAXN 30000#define STR_NUM 1000#define STR_LEN 25struct Node{ int cnt; bool isWord; int next[26

2013-10-21 16:22:08 487

转载 C++多态总结

封装:将实现细节放在一起并将它们与抽象分开,称为封装例如:数据隐藏(将数据放在类的私有部分);将实现的细节隐藏在类的私有部分中(通常是短小的代码)也是一种封装;将类函数定义和类声明放在不同的文件中也是一种封装 多态:C++中的多态分为静多态和动多态(也就是静态绑定和动态绑定两种现象),区别主要在于这种绑定发生在编译期还是运行期,发生在编译期的是静态绑定,也就是静多态;发生在运行期的

2013-10-19 18:12:09 548

转载 C++ 虚函数表解析

C++ 虚函数表解析 陈皓http://blog.youkuaiyun.com/haoel  前言 C++中的虚函数的作用主要是实现了多态的机制。关于多态,简而言之就是用父类型别的指针指向其子类的实例,然后通过父类的指针调用实际子类的成员函数。这种技术可以让父类的指针有“多种形态”,这是一种泛型技术。所谓泛型技术,说白了就是试图使用不变的代码来实现可变的算法。比如:模板技术,R

2013-10-19 17:58:22 566

转载 C++编译和链接详解

转自 http://blog.youkuaiyun.com/tomtestingresearch/article/details/60534701、 编译器和链接器        C++调用gcc编译命令进行编译(不同编译器有所不同),调用link命令进行链接。例如:              gcc 1.cpp -o 1.o             gcc 2.cpp -o 2.

2013-10-19 12:43:53 936

转载 C++程序的编译过程

转自http://www.cnblogs.com/zhaoxb1982/archive/2009/08/07/1540713.html目前正在学习《C++ Templates》一书。在有了一个初步的概念以后,我觉得有必要了解一下模板的编译过程。而要了解模板的编译过程就必须从普通的C++应用程序开始。下面是我对C++应用程序的编译过程的理解。敬请指教!一:一般的C++应用程序的编译过程。

2013-10-19 12:43:16 728

转载 #pragma once与 #ifndef的区别

转自http://www.cppblog.com/szhoftuncun/archive/2007/10/28/35356.html为了避免同一个文件被include多次1   #ifndef方式2   #pragma once方式在能够支持这两种方式的编译器上,二者并没有太大的区别,但是两者仍然还是有一些细微的区别。    方式一:    #ifndef __

2013-10-19 12:33:32 519

原创 一些Google面试题

1.谷歌面试题:给定能随机生成整数 1 到 5 的函数,写出能随机生成整数 1 到 7 的函数。回答:此题的关键是让生成的 1 到 7 的数出现概率相同。 只要我们可以从 n 个数中随机选出 1 到 n 个数,反复进行这种运算,直到剩下最后一个数 即可。 我们可以调用 n 次给定函数,生成 n 个 1 到 5 之间的随机数,选取最大数所在位置即 可满足以上要求。 例如 初始的 7 个数[1

2013-10-19 11:49:32 982

转载 C++模板template总结

有以下这样3个求加法的函数:  1 int Add(int x,int y) 2 { 3 return x+y; 4 } 5 6 double Add(double x,double y) 7 { 8 return x+y; 9 }10 11 long Add(long x,long y)12 {13 return x+y;14 }它们拥有同一个函数名,相同的函数体,

2013-10-19 11:26:41 1494

原创 蓄水池抽样问题

部分内容转自http://handspeaker.iteye.com/blog/1167092http://blog.youkuaiyun.com/hackbuteer1/article/details/7971328这种应用的场景一般是数据流的情况下,由于数据只能被读取一次,而且数据量很大,并不能全部保存,因此数据量N是无法在抽样开始时确定的;但又要保持随机性,于是有了这个问

2013-10-18 22:14:48 740

原创 Clone Graph

Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors.OJ's undirected graph serialization:Nodes are labeled uniquely.We use # as a separator for each

2013-10-17 20:37:53 802

原创 Copy List with Random Pointer

A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy of the list.class Solution {public:

2013-10-17 16:05:04 911

原创 Gas Station

There are N gas stations along a circular route, where the amount of gas at station i is gas[i].You have a car with an unlimited gas tank and it costs cost[i] of gas to travel from station i to

2013-10-17 11:35:44 632

原创 Candy

There are N children standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following requirements:Each child must have at least on

2013-10-17 00:34:37 620

转载 C++类大小的计算(对齐,继承)

先看这么个问题——已知:class CBase{int a;char *p;};那么运行cout第一步:空的class CBase{}运行coutsizeof(CBase)=1;为什么空的什么都没有是1呢?类的实例化,所谓类的实例化就是在内存中分配一块地址,每个实例在 内存中都有独一无二的地址。同样空类也会被实例化,所以编译器会给空类隐含的添加

2013-10-16 21:53:49 1218

转载 c++内存中字节对齐问题详解

一、什么是字节对齐,为什么要对齐?        现代计算机中内存空间都是按照byte划分的,从理论上讲似乎对任何类型的变量的访问可以从任何地址开始,但实际情况是在访问特定类型变量的时候经常在特定的内存地址访问,这就需要各种类型数据按照一定的规则在空间上排列,而不是顺序的一个接一个的排放,这就是对齐。        对齐的作用和原因:各个硬件平台对存储空间的处理上有很大的不同。一些平台对某

2013-10-16 16:19:55 773

原创 有道笔试题

网易有道笔试题 _20121 打印如下形式的矩阵; n=5: 1   2   9 10 25 4   3   8 11 24 5   6   7 12 23 16 15 14 13 22 17 18 19 20 21 n=6: 1   2   9 10 25 26 4   3   8 11 24 27 5

2013-10-16 15:54:09 918

原创 Word Break II

Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.Return all such possible sentences.For example, givens = "

2013-10-16 12:00:42 1048

原创 Word Break

Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.For example, givens = "leetcode",dict = ["leet"

2013-10-16 11:43:19 621

原创 Single Number I & II

Given an array of integers, every element appears twice except for one. Find that single one.Note:Your algorithm should have a linear runtime complexity. Could you implement it without using ext

2013-10-15 19:21:52 941

原创 udp协议总结

为传输层的2个主要协议之一,UDP不提供安全可靠的传输,相应的传输效率就高些。1.UDP协议的作用IP协议无法区别同一个主机系统上的多个应用程序。UDP采用端口标识同一主机上的不同应用程序。无法采取进程ID来标识不同应用程序的原因:1)系统中应用程序的进程ID分配和销毁是动态的,发送方无法确定该应用程序的进程ID是什么2)有时可能在一个进程中实现多个功能

2013-10-12 10:40:50 1628

转载 java线程安全理解

如果你的代码所在的进程中有多个线程在同时运行,而这些线程可能会同时运行这段代码。如果每次运行结果和单线程运行的结果是一样的,而且其他的变量的值也和预期的是一样的,就是线程安全的。比如一个 ArrayList 类,在添加一个元素的时候,它可能会有两步来完成:1. 在 Items[Size] 的位置存放此元素;2. 增大 Size 的值。  在单线程运行的情况下,如果 Size = 0

2013-10-12 09:19:51 613

转载 Java中sleep()与wait()的区别

第一种解释:功能差不多,都用来进行线程控制,他们最大本质的区别是:sleep()不释放同步锁,wait()释放同步缩.   还有用法的上的不同是:sleep(milliseconds)可以用时间指定来使他自动醒过来,如果时间不到你只能调用interreput()来强行打断;wait()可以用notify()直接唤起.第二种解释:sleep是Threa

2013-10-09 13:49:20 622

转载 Java笔试题复习_Part2

13。下面的代码在绝大部分时间内都运行得很正常,请问在什么情况下会出现问题?问题的根源在哪里?(10)wait和notify使用目的不能达到,wait()的obj,自身不能notify().出题人对wait和notify机制不够理解.import java.util.LinkedList;public class Stack {LinkedList list = new Lin

2013-10-09 13:41:02 1252

空空如也

空空如也

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

TA关注的人

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