自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 一个菜鸟的算法导论学习笔记【Chapter 4】

Chapter 4 Recurrences 4.1 The substitution method guess and use mathematic induction to prove. 4.2 The recursion-tree method 4.3 The master method a  'cookbook' method for solving recurre

2017-09-15 18:45:04 151

原创 一个菜鸟的算法导论学习笔记【Chapter 3】

Chapter 3 Growth of function 3.1 Asymptotic notation theta-notation O-natation omega-natation theorem:for any two function f(n),g(n),we have f(n)  = theta(g(n)) if and only if f(n) = O(g(n)) and

2017-09-15 16:13:54 219

原创 一个练手的学生管理系统

#include #include #include using namespace std; FILE *fstu;//指向学生信息表文件的指针 FILE *fgra;//指向成绩的指针 struct stu_f//学生基本表 { char student_number[20]; char student_name[30]; char genden[10]; char major[

2017-06-12 21:45:48 241

原创 一个菜鸟的算法导论学习笔记【Chapter 2】

Chapter 2 Getting Started 2.1 Insertion sort

2017-04-28 16:24:07 215

原创 一个菜鸟的算法导论学习笔记【Introsuction&Chapter 1】

Introduction&Chapter 1 Introduction 学习基础:掌握基本c++语法,通过慕课北京大学程序设计与算法(二)学习了一些基本的算法。 学习目标:半年时间内完成,用c++/java实现大部分伪代码。 博客内容:相应的代码片与学习总结。 使用书籍:英文版 INTRODUCTION TO ALGORITHMS Chapter 1 1.1 算法&数据结构

2017-04-27 23:59:45 204

空空如也

空空如也

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

TA关注的人

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