自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

BigBear's Tech. Blog

Welcome to BigBear's Tech. Blog

  • 博客(25)
  • 资源 (44)
  • 收藏
  • 关注

原创 Example of constaint satisfatory problem:Australia Map Coloring

There is a example of constaint satisfatory problem-Australia Map Coloring. the kernel of follow procedure is depth-first search.sample of input:1 2 3 4 5 6 781 2 1 3 2 3 2 4 3 5 3 6 4 5 5 6core

2008-05-10 15:14:00 707

转载 Ubuntu声音不正常的解决办法

转在:http://www.27jk.com/article/qita/info-2128.html 症状:听音乐的时候声音总是答答的声音解决办法:运行sudo gedit /etc/asound.conf增加下面参数pcm.card0 { type hw card 0

2009-06-14 20:52:00 1957

转载 Recommended Informatics (CS) Literature

Of course, it is also recommended that you read books onother disciplines.A nice and gentle introduction into the world of computers is(also see book review by Peter G. Neumann inACM SIG

2009-02-20 17:56:00 605

转载 [zz]搜索引擎相关站点收集

from:http://hi.baidu.com/diqiucun666/blog/item/730e790641a1727d02088125.html[简单介绍]这里收集了一些搜索引擎相关的站点,热切期盼大家在找到好的相关站点后在后面跟帖,谢谢1,基本策略http://www.lib.berkeley.edu/TeachingLib/Guides/Internet/Strateg

2009-02-09 19:39:00 2089

原创 Two Linux Kernel Macros: likely and unlikely

These two macro is defined in /include/linux/complier.h./* Somewhere in the middle of the GCC 2.96 development cycle, we implemented   a mechanism by which the user can annotate likely branch directio

2008-12-26 21:39:00 618

原创 the implementation of system call in linux

//目的:探讨LINUX中系统调用的实现。//意义:操作系统做为一种最为重要的系统软件,不仅要担当系统资源的管理者,完成资源的动态获得,资源的有效使用;//     而且要为资源的使用者(程序员)提供服务,这种服务通常的说,是以系统调用的形式提供的.一般地,系统调用可//     以分为内核级系统调用,和用户级系统调用.前者在核心态运行,为用户系统调用提供服务.后者是内核系统调用//     的用

2008-09-28 16:44:00 471

原创 Implementation of Heap Sort

Follow is the C++ code of heap sort:templatevoid _heap_sort(T * pUnsort, size_t len) { for (int i = len; i >0; --i) { _make_heap(pUnsort, i); std::swap(pUnsort[0], pUnsort[

2008-07-10 09:14:00 470

原创 Can thread obtain resource from operating system by itself?

Many people think the process is the only entity, in operating system, which can obtain resources from os. But is found the view is not correct, because the thread can also get many kinds of resources

2008-07-07 21:56:00 441

原创 Interprocess Communication——Using Windows Pipe

// Server.cpp#include #include int main(int argc, char *argv[]){ HANDLE hOldStdin, hOldStdout; // define two variables to record the information of the process to be create

2008-07-01 21:20:00 744

原创 如何获取数据库服务器上的数据库列表

以下是我的解决方案,仅供参考1. 一个有益的实验。在Microsoft SQL Server Management Studio中建立一数据库查询。SQL语句如下:select * from sys.databases你会看到你需要的信息。现在估计该问题你已经知道怎么解决了,当然其中的道理估计你也明白,这里就不详述。2. 一个实例。代码如下:        public strin

2008-04-24 20:20:00 3268 3

原创 Linq and it's convention

//definition of an array which can be inumerablePeople[] peoples = new People[] {         new People("Li", "C#"),        new People("zhang", "C++"),        new People("Smith", "C++")      };// Linq ex

2008-04-24 10:20:00 526

原创 longest common subsequence

Following is a DP solution of this problem. /**//*  Name: LCS.H  Copyright: All Right Reserved 2008 Li Zu-ding  Author: li zu-ding  Date: 29-02-08 08:47  Description: this code is the answer of 

2008-02-29 19:47:00 508

原创 An Dispair Phenomenon-Compliers Fail to Implement "Separation Moedl of Function Template"

 Most complier fail to implement the compliing mechnisam of function template-separation model, include g++,v s2008. Follow is my test code.in "separation_model.h"#if !defined(SEPARATION_MODEL)#

2008-02-24 15:10:00 478

原创 surefooted

 今天重新实现了"同时求一个序列中的最大最小元"算法.和以前的实现对比了一下, 发现今天的实现要比以前的版本更具有可扩展性.但在新的实现中,由于没有对元素 间的比较操作参数化,感觉实现还不够好.想了想,原因是没有彻底理解函数对象,函 数指针等一些机制之间的区别,所以实现起来感觉有点找不到头脑. 重新阅读"C++ Primer"函数模板一章节,首先就遇到了下面的一个模板函数:template

2008-02-24 12:22:00 408

原创 reference to function and pointer to function

 Now, you are amazed and you may ask: what is reference to function? A reference to function is a function alias which repersent the function. Follow is a demo of reference to function.template cl

2008-02-24 12:15:00 485

原创 Reference To Array And Pointer To Array

数组引用和数组指针和两种非常优美而又用途广泛的语言设施,但很多其名气不是很大,因为这两设施C++中新引入的,大家一般不怎么注意的.下面通过一小段代码,来展示其用法.  #include iostream>using namespace std;template class T, int size>T _min(T (&r_a)[size]) // 函数模板的形参是数组引用...{ 

2008-02-23 09:56:00 435

原创 Maximin of substring

 本文该处了最大字段和问题的朴素算法,分治法,动态规划法的实现.  /**//*  * Description: a directing approach   * name: sum_of_substring  * parameters: string: string to calculate the maximun sum.  *             len   : the le

2008-01-29 17:11:00 368

原创 Implemention of Partition Function

 partition是一个非常有用,且常见的操作,因此,探讨他的高效实现是非常有意义的一件事情,在上一篇文章里,已经给出了两种实现方式,本文在给出两种实现方式.实现方式的巧妙我无法用语言告诉你,只用你自己去体会了.version Iint partition(int *array, int low, int high) ...{    int pivotpos = low;    in

2008-01-28 09:49:00 402

原创 写最好的代码

 最好的代码是什么样的代码?有人说是最短的,有人说是效率最高的.你问我?还是用事实来说话好一点.事实一:Bjarne Stroustrup(Creator and implementor  of C++ Language)先生的语录:Remember, a primary aim of writing code is to make its meaning clear to the nex

2008-01-26 15:54:00 551

原创 背包问题的贪心算法

 背包问题是一个经典的问题,到现在还没有多项式时间的算法去解决它.本文是背包问题的贪心算法,当然是一个非多项式算法. #include iostream>#include vector>#include algorithm>using namespace std;struct Treasure...{    int no;    int quantity;    int price; 

2008-01-25 09:29:00 2214

原创 删数问题

       刚才看成文虎先生的“实用算法的分析与应用”一书中的“删数问题”,感觉先生给出的算法有错误。与大家讨论之。        先叙述一下问题:       键盘输入一个高精度的正整数N,去掉其中任意S个数字后剩下的数字按原来左右次序组成一个新的正整数。编程对给定的N和S,寻找一种方案使得剩下的数字组成的新数最小。      输出英包含所去掉的数字的位置和组成的新的正整数(N  

2008-01-24 20:27:00 1431

原创 储油点问题的解答

储油点问题是一个经典的递推问题,是关于倒推算法的一个非常典型的应用。下面给出其算法(C++描述): /**//*  Name: sation of oil  Copyright: all right reserved @ [email protected]  Author: [email protected]  Date: 23-01-08 16:57  Description: 

2008-01-24 09:34:00 1427

原创 A Simple Hash Class(one)

 /**//*  Name: hash class  Copyright: all right reserved @ [email protected]  Author: [email protected]  Date: 23-01-08 14:25  Description: hash class*/class Hash...{public:    Hash();    ~Hash(

2008-01-23 15:44:00 423

原创 Implemention of HashTable(Part I)

 fellowing is some hash function: /**//*  Name: hash functions  Copyright: All Right Reserved @ [email protected]  Author: lizuding  Date: 21-01-08 21:46  Description: implemention of hash func

2008-01-22 13:20:00 469

原创 美得让人窒息

    今天读了些stl的源代码,感觉太爽了——感觉就想就想和自己女朋友刚认识的时候的一样,除了想和她在一起以外,没有任何别的想法;无时无刻都不在感谢上天赐予我这美妙的精灵。    呵呵,感觉自己又谈恋爱了。    就让我和你在我这满脑子就是荷尔蒙的时刻,和你分享这“爱情激素”的神奇。       一下是stl::vector::push_back的实现:     void push_

2008-01-21 11:00:00 769 1

[Google] Introduction to Distributed System Design.pdf

Google分布式设计教程: Introduction to Distributed System Design Table of Contents Audience and Pre-Requisites The Basics So How Is It Done? Remote Procedure Calls Distributed Design Principles Exercises References

2019-09-28

Building Data Science Teams, 如何组建数据团队

美国首席数据科学家分享数据科学的能力矩阵,已经如何建立数据科学家团队。

2018-04-29

零售的哲学

豆瓣链接: https://book.douban.com/subject/26270679/ 内容简介 · · · · · · 全球最大的便利店连锁公司创始人——铃木敏文,结合40多年零售经验,为你讲述击中消费心理的零售哲学。铃木敏文的很多创新,现在已经成为商界常识,本书把那些不可思议的零售创新娓娓道来。关于零售的一切:选址、订货、销售、物流、管理……他一次又一次地在一片反对声中创造出零售界的新纪录。 翻开本书,看铃木敏文如何领导7-11冲破层层阻碍,成为世界第一的零售哲学。

2018-04-29

The Data Science Handbook

全球顶尖数据科学家的采访了。 豆瓣链接: https://book.douban.com/subject/26438775/

2018-04-29

Alibaba The House That Jack Ma Built

豆瓣链接 https://book.douban.com/subject/26726112/ 内容简介 · · · · · · In just a decade and half Jack Ma, a man from modest beginnings who started out as an English teacher, founded and built Alibaba into one of the world’s largest companies, an e-commerce empire on which hundreds of millions of Chinese consumers depend. Alibaba’s $25 billion IPO in 2014 was the largest global IPO ever. A Rockefeller of his age who is courted by CEOs and Presidents around the world, Jack is an icon for China’s booming private sector and the gatekeeper to hundreds of millions of middle class consumers. Duncan Clark first met Jack in 1999 in the small apartment where Jack founded Alibaba. Granted unprecedented access to a wealth of new material including exclusive interviews, Clark draws on his own experience as an early advisor to Alibaba and two decades in China chronicling the Internet’s impact on the country to create an authoritative, compelling narrative account of Alibaba’s rise. How did Jack overcome his humble origins and early failures to achieve massive success with Alibaba? How did he outsmart rival entrepreneurs from China and Silicon Valley? Can Alibaba maintain its 80% market share? As it forges ahead into finance and entertainment, are there limits to Alibaba’s ambitions? How does the Chinese government view its rise? Will Alibaba expand further overseas, including in the U.S.? Clark tells Alibaba’s tale in the context of China’s momentous economic and social changes, illuminating an unlikely corporate titan as never before. 作者简介 · · · · · · 邓肯•克拉克(Duncan Clark),毕业于伦敦政治经济学院,先后作为投资银行家于伦敦和香港的摩根士丹利分部工作4年。1994年他在北京创立了BDA公司,目前担任董事长一职。BDA为投资者提供专业的咨询服务,特别专注于中国的科技及消费者领域,在北京的专业员工超过100人。邓肯在阿里巴巴早期曾为其提供咨询服务,此外他还是英国政府在中国数字经济方面的顾问。由于他在英国在华贸易和投资方面所做出的杰出贡献,邓肯于2013年被授予大英帝国官佐勋章。他还曾担任中国英国商会主席。2010~2012年,邓肯在斯坦福大学担任访问学者,并于2010年联合创建了“China 2.0”项目。 邓肯是许多科技企业的早期投资人,如App Annie、Student.com以及Radish Fiction。他目前还在一些机构的顾问委员会中任职,其中包括总部位于日内瓦的Pictet & Cie银行旗下的数字通信基金、杜绝非法野生动物交易的野生救援协会。邓肯还是盘古银行(中国)的独立董事

2018-04-29

算法导论 第三版 Introduction to Algorithms Third Edition

算法导论 第三版 Introduction to Algorithms Third Edition, 继续过去的传奇

2011-01-10

itsm2000 著名的时间序列分析软件,值得学习,值得借鉴。

itsm2000, 著名的时间序列分析软件,值得学习,值得借鉴。

2010-11-24

Berkeley Problems in Mathematics

经典就不用说了,是提高数学水平的绝佳材料。

2010-11-19

Head First Design Patterns8

经典就不用说了,需要的就下载吧。 英文原版,可以编辑的。 书太大了,不便上传,我分成8个小文件。 每个文件可以单独浏览,也可以用acrobat合并。

2010-08-18

Head First Design Patterns 7

经典就不用说了,需要的就下载吧。 英文原版,可以编辑的。 书太大了,不便上传,我分成8个小文件。 每个文件可以单独浏览,也可以用acrobat合并。

2010-08-18

Head First Design Patterns 6

经典就不用说了,需要的就下载吧。 英文原版,可以编辑的。 书太大了,不便上传,我分成8个小文件。 每个文件可以单独浏览,也可以用acrobat合并。

2010-08-18

Head First Design Patterns 5

经典就不用说了,需要的就下载吧。 英文原版,可以编辑的。 书太大了,不便上传,我分成8个小文件。 每个文件可以单独浏览,也可以用acrobat合并。

2010-08-18

Head First Design Patterns 4

经典就不用说了,需要的就下载吧。 英文原版,可以编辑的。 书太大了,不便上传,我分成8个小文件。 每个文件可以单独浏览,也可以用acrobat合并。

2010-08-18

Head First Design Patterns 3

经典就不用说了,需要的就下载吧。 英文原版,可以编辑的。 书太大了,不便上传,我分成8个小文件。 每个文件可以单独浏览,也可以用acrobat合并。

2010-08-18

Head First Design Patterns 2

经典就不用说了,需要的就下载吧。 英文原版,可以编辑的。 书太大了,不便上传,我分成8个小文件。 每个文件可以单独浏览,也可以用acrobat合并。

2010-08-18

高性能MySQL High Performance MySQL(Second Edition, English)

High Performance MySQL, Bible for every MySQLer. A art of JOLT AWARD! Fro professional comment for this book, please refer to http://www.amazon.com/High-Performance-MySQL-Jeremy-Zawodny/dp/0596003064 Enjoy It! Thanks

2010-04-22

Inside MySQL 5.0

Inside MySQL 5.0 A DBA’s Perspective

2010-04-22

The Unix Programming Environment (Brian W. Kernighan) English Versin

The most classic Uinx tutorial! work of father of Unix, Brian W. Kernighan. For remarking of this book, please refer to: http://www.amazon.com/Unix-Programming-Environment-Prentice-Hall-Software/dp/013937681X

2010-04-19

经典打字程序 Type Tutor (TT)

经典打字程序 Type Tutor TT 在dos 或者 命令提示符下面使用。

2009-08-15

The C++ Programming Language Special 3rd Edition C++ 程序设计语言 特别版

c++之父Bjarne Stroustrup对c++最经典的描述, The C++ Programming Language Special 3rd Edition C++ 程序设计语言 特别版

2009-06-11

Navicat 8 for MySQL and Serial Key

Navicat 8 for MySQL and Serial Key 序列号 Navicat 8 for MySQL and Serial Key 序列号 Navicat 8 for MySQL and Serial Key 序列号

2009-06-11

线性代数(同济第三版)

线性代数(同济第三版) 工科类专业的教材 平时学习很好的参考资料

2009-04-21

Linked-List Implementation of Disjoint Set

Linked-List Implementation of Disjoint Set

2009-03-16

Adobe Acrobat 9 Pro Extended Patcher and KeyGen

Adobe Acrobat 9 Pro Extended Patcher and KeyGen

2009-03-16

Dev-C++ Portable

免安装,开源的的DEV-C++.具有和DEV-C++同样的的友好界面。

2009-02-13

Dev-Pascal Compiler 1.9.2

Pascal社区顶尖优秀的编译工具,内涵free pascal和GUN pascal两种编译器,使用开源社区最优秀的调试工具gdb调试程序。支持标准pascal和pascal扩展的及时定制。有DEV系列一贯的友好界面分格。 .........

2009-02-13

微软研发致胜策略.pdf

取自微软的经! 学习成功软件研发经验的绝佳材料!

2009-02-07

The C Programming Language Chinese Edition(pdf)

The bible of C world!!

2008-12-16

The C Programming Language Second Edtion

The bible of C world!! English edition!!

2008-12-16

MySQL 5.1 Reference Manual

the complete reference manuals of MySQL, both english and chinese!!

2008-12-16

A Simple Database Engine Using Hash Table

This is a simple database engine implementation which derived from DB(2). If you true understanding this database engine, you will have more chances to be a elite in the field of computer science. Best wish for you!

2008-12-16

Mathematics for the analysis of algorithms

work of Donald E. Knuth!

2008-09-30

Advanced Topics in Graph Algorithms

Advanced Topics in Graph Algorithms for algorithm-er!

2008-09-30

C++名家对话 与C++专家的对话

没有洞察力的程序员最大就是一个简单的代码民工——复制别人的思想,设计范式。相拥有洞察力?那就与名家对话吧!

2008-09-30

C Elements of Style

绝对经典的C\C++编程指导书,大师几十年系统经验的积累,值得收藏!

2008-09-30

The Source Code Of Linux 0.01

The Source Code Of Linux 0.01

2008-09-30

Modern Operating System

Operating System Classic Tutorial

2008-09-30

空空如也

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

TA关注的人

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