- 博客(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
原创 一个菜鸟的算法导论学习笔记【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关注的人