当前位置:网站首页>Part I - Chapter 1 Overview
Part I - Chapter 1 Overview
2020-11-08 17:48:00 【Li Lihao】
Data structure introduction
Three reasons to use data structures : efficiency 、 abstract 、 reusability
Introduction to the algorithm : efficiency 、 abstract 、 reusability
General method of algorithm design : Random method 、 Divide and conquer method 、 Dynamic programming 、 The law of greed 、 Approximate method
General method of algorithm design
Random method
Random methods rely on the statistical properties of random numbers . For example, an example of applying the stochastic method is Quick sort .
Divide and conquer method
Divide and conquer contains 3 A step : decompose 、 solve 、 Merge . An example of divide and conquer is Merge sort
Dynamic programming
Dynamic programming is similar to divide and conquer , All of them decompose the larger problem into subproblems, and finally merge the results .
The difference , In dynamic planning , The way the problem is handled is related to the relationship between the subproblems . In divide and conquer , Each subproblem is independent .
therefore , In divide and conquer, you can use recursion ( The first 3 Chapter ) The way to solve each sub problem , Then merge the results with the results of other subproblems .
The law of greed
The greedy method can always make the best choice at present when solving problems . let me put it another way , It's not about the overall optimum , And it's just a local optimal solution in a sense .
An example of a greedy approach is Huffman coding ( The first 14 Chapter ), It's a data compression algorithm .
The most important part of Huffman coding is to build a Huffman tree ( Also known as the optimal binary tree ).
- (1) To build a Hoffman tree , From its leaf nodes, from the bottom up . Take each compressed symbol and the number of times they appear in the data ( frequency ) Save together as the root node of the binary tree .
- (2) Next , Select two root nodes with the minimum frequency as the left and right subtree nodes , Construct a new binary tree , And the frequency value of the new binary tree root node is the sum of the frequency values of the left and right subtree nodes .
- (3) Then repeat this step , Know to get the only tree , This is the final Hoffman tree .
The root node of the Huffman tree contains the total number of symbols in the data , Leaf nodes contain the original symbols and how often they appear .
Huffman coding is a greedy algorithm , Because every time it selects the most suitable two trees to merge .
Approximate method
The approximate method does not calculate the optimal solution , contrary , It only calculates “ Good enough. ” Solution . The approximate method is usually used to solve the problems that are expensive to calculate and unwilling to give up because of its value .
Salesman problem ( The first 16 Chapter ) It's a problem that is usually solved by approximation .
版权声明
本文为[Li Lihao]所创,转载请带上原文链接,感谢
边栏推荐
- Flink的sink实战之一:初探
- 框架-SPI四种模式+通用设备驱动实现-源码
- Design by contract (DBC) and its application in C language
- Common memory leakage scenarios in JS
- 学会了volatile,你变心了,我看到了
- IT行业薪资一直遥遥领先!十年后的程序员,是否还是一个高薪职业?
- On the concurrency of update operation
- Liteos message queuing actual combat
- Dev-c++在windows环境下无法debug(调试)的解决方案
- vim-配置教程+源码
猜你喜欢
Express framework
【Elasticsearch 技术分享】—— 十张图带大家看懂 ES 原理 !明白为什么说:ES 是准实时的!
Learn to record and analyze
What are the necessary laws and regulations to know when entering the Internet?
Chapter 2 programming exercises
PHP generates unique strings
VirtualBox安装centos7
趣文分享:C 语言和 C++、C# 的区别在什么地方?
C + + things: from rice cookers to rockets, C + + is everywhere
习题五
随机推荐
二叉树的四种遍历方应用
构建者模式(Builder pattern)
构建者模式(Builder pattern)
苏州游记
Solution to the problem of offline connection between ADB and mobile phone
go语言参数传递到底是传值还是传引用?
Builder pattern
Hello world of rabbitmq
Dynamic ReLU:微软推出提点神器,可能是最好的ReLU改进 | ECCV 2020
How much faster is a server equipped with a SSD than a mechanical hard disk
学习记录并且简单分析
不是程序员,代码也不能太丑!python官方书写规范:任何人都该了解的 pep8
Learn volatile, you change your mind, I see
[random talk] JS related thread model sorting
Leancloud changes in October
一分钟全面看懂forsage智能合约全球共享以太坊矩阵计划
If the programming language as martial arts unique! C++ is Jiu Yin Jing. What about programmers?
接口测试用例思路总结
SQL 速查
IT行业薪资一直遥遥领先!十年后的程序员,是否还是一个高薪职业?