自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

出海的博客

Gather, Spread, Share and Discuss.

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

原创 [读书笔记]《算法竞赛入门经典》第3章

书名:算法竞赛-入门经典 第2版作者:刘汝佳类别:读书笔记文章目录第3章 数组和字符串3.1 数组3.2 字符串3.3 竞赛题目选讲第3章 数组和字符串3.1 数组Learning Points:语法相关:memcpy( a, b, sizeof(a)); 需要 string.h相同的赋值可以合并。竞赛相关数组稍微声明大一些,尤其是在 size 不明确的情况下。要...

2019-08-30 18:57:57 295

原创 [读书笔记]Core Java: Volume I - Fundamentals Chapter 8

Title: Core Java — Volume I FundamentalsEdition: Eleventh EditionAuthor: Cay S. Horstmann读书笔记:对原书的归纳、总结、补充和疑问。文章目录Chapter 8 Generic Programming8.1 Why Generic Programming8.1.1 The Advantage of T...

2019-08-30 18:55:34 489

原创 [读书笔记]《算法竞赛入门经典》第2章

书名:算法竞赛-入门经典 第2版作者:刘汝佳类别:读书笔记文章目录第2章 循环结构程序设计 (Looping)2.1 for 循环 (for loop)2.2 while 循环和 do-while 循环2.3 循环的代价第2章 循环结构程序设计 (Looping)2.1 for 循环 (for loop)#include <stdio.h>#include <m...

2019-08-28 11:22:43 382

原创 [读书笔记]Core Java: Volume I - Fundamentals Chapter 6

Title: Core Java — Volume I FundamentalsEdition: Eleventh EditionAuthor: Cay S. Horstmann读书笔记:对原书的归纳、总结、补充和疑问。文章目录Chapter 6 Interface, Lambda Expressions and Inner Class6.1 Interfaces6.1.1 The I...

2019-07-02 07:30:37 708

原创 [读书笔记]Core Java: Volume I - Fundamentals Chapter 5

Title: Core Java — Volume I FundamentalsEdition: Eleventh EditionAuthor: Cay S. Horstmann读书笔记:对原书的归纳、总结、补充和疑问。文章目录Chapter 5 Inheritance5.1 Classes, Superclasses and Subclasss5.1.1 Defining Subcl...

2019-07-02 07:29:12 305

原创 [读书笔记]Core Java: Volume I - Fundamentals Chapter 4

Title: Core Java — Volume I FundamentalsEdition: Eleventh EditionAuthor: Cay S. Horstmann读书笔记:对原书的归纳、总结、补充和疑问。文章目录Chapter 4 Objects and Classes4.1 Introduction to Object-Oriented Programming4.1....

2019-07-02 07:27:47 1390

原创 [读书笔记]《如何阅读一本书》How to Read a Book 05

书名:如何阅读一本书Title: How to Read a Book-The Classic Guide To Intelligent ReadingAuthor: Mortimer J.Adler & Charles Van Doren文章目录Part One: The Dimensions of Reading5. How to be a Demanding Reader5...

2019-06-11 07:48:19 954

原创 [读书笔记]《如何阅读一本书》How to Read a Book 04

书名:如何阅读一本书Title: How to Read a Book-The Classic Guide To Intelligent ReadingAuthor: Mortimer J.Adler & Charles Van Doren文章目录Part One: The Dimensions of Reading4. The Second Level Of Reading: ...

2019-06-06 07:27:06 682

原创 [读书笔记]《如何阅读一本书》How to Read a Book 02 & 03

书名:如何阅读一本书Title: How to Read a Book-The Classic Guide To Intelligent ReadingAuthor: Mortimer J.Adler & Charles Van Doren文章目录Part One: The Dimensions of Reading2. The Levels of Reading3. The F...

2019-06-05 08:53:18 613

原创 [读书笔记]《如何阅读一本书》How to Read a Book 01

书名:如何阅读一本书Title: How to Read a Book-The Classic Guide To Intelligent ReadingAuthor: Mortimer J.Adler & Charles Van Doren文章目录Contents of the book从目录的名字来分析整本书:PrefaceThe Dimensions of Reading1....

2019-06-05 07:19:57 1659

原创 [读书笔记]Core Java: Volume I - Fundamentals Chapter 2 & 3

Title: Core Java — Volume I FundamentalsEdition: Eleventh EditionAuthor: Cay S. Horstmann读书笔记:对原书的归纳、总结、补充和疑问。文章目录Chapter 2: The Java Programming Environment2.1 Installing the Java Development K...

2019-06-04 20:17:55 1369

原创 [读书笔记]Core Java: Volume I - Fundamentals Chapter 1

Title: Core Java — Volume I FundamentalsEdition: Eleventh EditionAuthor: Cay S. Horstmann文章目录PrefaceTo the ReaderA Tour of This BookConventionChapter 1: An Introduction to Java1.1 Java as a Progr...

2019-06-02 15:36:44 610

原创 [读书笔记]《算法竞赛入门经典》第1章

书名:算法竞赛-入门经典 第2版作者:刘汝佳类别:读书笔记前言前言之中比较重要的是作者对整本书的架构安排:第一部分是语言篇(第1-4章)第二部分是算法篇(第5-8章)第三部分是竞赛篇(第9-11章)全新的第12章是在《算法竞赛入门经典----训练指南》的基础上补充少量知识与大量精彩例题第1章 程序入门设计1.1 算术表达式#include <stdio.h&gt...

2019-05-30 07:42:38 398

原创 [读书笔记]《生于忧患,死于安乐》

《生于忧患,死于安乐》孟子舜发于畎亩之中,傅说举于版筑之间,胶鬲举于鱼盐之中,管夷吾举于士,孙叔敖举于海,百里奚举于市。故天将降大任于是人也,必先苦其心志,劳其筋骨,饿其体肤,空乏其身,行拂乱其所为,所以动心忍性,曾益其所不能。人恒过,然后能改;困于心,衡于虑,而后作;征于色,发于声,而后喻。入则无法家拂士,出则无敌国外患者,国恒亡。然后知生于忧患而死于安乐也这篇文章很长一段时间都是...

2019-05-28 07:35:14 1519

原创 千里之行,始于足下

出海的第一篇博客我为什么要写?Why我想写什么?What我想要怎么写? How?我为什么要写?Why写博客的目的主要是记录与分享。出于对Computer Science 的热爱,我有很多书籍和资料想要阅读和学习。在这个过程当中我希望能把自己学到的知识及时记录下来,方便以后温故而知新。其次一个人闭门造车难免会出现理解出现偏差的现象,所以我希望把自己的理解分享出来,希望能得到大家的检验,也希望...

2019-05-26 16:29:31 178

空空如也

空空如也

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

TA关注的人

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