自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

碧海恋天的博客

欢迎到我的博客做客

  • 博客(12)
  • 资源 (23)
  • 收藏
  • 关注

原创 Combination Sum II

Combination Sum IIGiven a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.Each number in C may on

2012-08-23 02:55:49 2437

原创 Combination Sum

Combination SumGiven a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.The same repeated number may be c

2012-08-23 01:45:34 8833 3

原创 Permutations

PermutationsGiven a collection of numbers, return all possible permutations.For example,[1,2,3] have the following permutations:[1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], and [3,2,

2012-08-23 00:36:52 820

原创 Climbing Stairs

Climbing StairsYou are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?/** 整理的

2012-08-14 20:50:19 648

原创 Anagrams

AnagramsGiven an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.什么是anagrams?/** 整理的提交代码 * 处理复杂度为O(n),n是字符串个数,但是其中有排序等步骤没有固

2012-08-14 19:24:10 911

原创 Add Two Numbers

Add Two NumbersYou are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers

2012-08-14 15:33:33 718

原创 Add Binary

Add BinaryGiven two binary strings, return their sum (also a binary string).For example,a = "11"b = "1"Return "100"./** 整理的提交代码 * 处理复杂度为O(max(n1,n2)) * 主要思路: * 1、先处理特殊情况,有其中一个为空,则

2012-08-13 23:33:01 2181

原创 4Sum

4SumGiven 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 target.No

2012-08-13 19:14:22 1688

原创 3Sum Closest

3Sum ClosestGiven an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each in

2012-08-13 14:07:06 3345

原创 3Sum

3SumGiven an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.Note:Elements in

2012-08-12 17:16:56 6570

原创 《C++标准程序库》第六章摘录与笔记

《C++标准程序库》第六章摘录与笔记6.1 容器的共通能力和共通操作6.1.1 容器的共通能力1、所有容器提供的都是“value语意”而非“reference语意”。容器进行的元素的安插操作时,内部实施的是拷贝操作,置于容器内。一次STL容器的每一个元素都必须能够被拷贝。如果你打算存放的对象不具有public copy构造函数,或者你要的不是副本(如你要的是被多个容器共同容纳的元素

2012-08-04 12:16:45 813

原创 赋值操作符重载函数形参规格

赋值操作符重载函数形参规格赋值操作符重载函数的形参基本都写为常量引用,返回值为引用。class A{ public: A(int data = 0) : m_data(data) {} ~A() {} A& operator=(const A& other) { if (this == &other) { return *this; } m_data

2012-08-01 15:08:43 1028

Mini-XML库(包含编译工程和文档)及其在VC++6.0下的使用示例

Mini-XML库(包含编译工程和文档)及其在VC++6.0下的使用示例,具体查看http://blog.csdn.net/xiaobaohe/article/details/46388033

2015-06-06

SQLite权威指南

《The Definitive Guide to SQLite》一书的中文翻译,网上找到的。 SQLite是一个开源的、内嵌式的关系型数据库。它最初发布于2000年,在便携性、易用性、紧凑性、有效性和可靠性方面有突出的表现。

2012-01-01

奇异值分解(SVD)C语言源代码

奇异值分解在某些方面与对称矩阵或Hermite矩阵基于特征向量的对角化类似。然而这两种矩阵分解尽管有其相关性,但还是有明显的不同。对称阵特征向量分解的基础是谱分析,而奇异值分解则是谱分析理论在任意矩阵上的推广。 资源提供的是奇异值分解的C语言实现。

2011-05-04

啊哈 灵机一动

很好的一本书,在编程珠玑中提到了,有兴趣可以下来看看。pdf格式的。。。

2011-04-23

VC++小波变换与工程实践 光盘源代码

VC++小波变换与工程实践的随书光盘源代码,内有VC的小波实现,还有小波图像增强,小波水印等的VC++实现代码。

2011-04-23

《C&C++深层探索》 姚新颜

姚新颜著c&c++深层探索 剖析了c/c++语言的历史变化,各项告性及底层实现。适合对c/c++有一定基础,希望一个更深层次去了解c/c++的读者。 pdf格式的。

2010-10-16

The_C_Programming_Language

《The_C_Programming_Language》 Kernighan___Ritchie C语言圣经

2010-10-16

《精通Visual C++图像处理编程(第3版)》随书光盘

《精通Visual C++图像处理编程(第3版)》附盘的使用说明 ============================================================ 欢迎使用《精通Visual C++图像处理编程(第3版)》附盘,本光盘包含了《精通Visual C++图像处理编程(第3版)》一书中全部的源代码、示例程序的可执行文件以及一些供图像处理测试用的图像文件。 注意:本书的源代码并未经过严格测试,请读者自己斟酌使用,作者和出版者不对可能产生的任何损失负责。 请将您需要的文件或目录拷贝到硬盘中。当\Source目录下的源文件被拷贝到硬盘上时,源文件的属性可能变为只读的,在编译之前应该将它们的属性改为可读写的。

2010-04-30

VC++6.0 游戏编程

游戏基础 扫雷 五子棋 俄罗斯方块 老鼠和滚球 飞机游戏 五子棋联机游戏

2010-04-30

《Visual C++开发典型模块大全》系统优化模块

系统优化模块:程序主要可对控制面板中的常用工具进行设置、磁盘空间整、垃圾文件清理以及系统任务管理等

2010-04-28

图形 图像 编程技术

vchome资料库 图形图像编程技术篇

2010-04-21

VC++ 深入详解

要想熟练掌握Windows应用程序的开发,首先需要理解Windows平台下程序运行的内部机制。市面上很多介绍Visual C++开发的书籍,一上来就讲解MFC,并且只讲操作不讲原理,结果使得很多初学者看完书后感觉云山雾绕。本章将深入剖析Windows程序的内部运行机制,为读者扫清VC++学习路途中的第一个障碍,为进一步学习MFC程序打下基础。

2010-04-18

空空如也

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

TA关注的人

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