├──Package
│ ├── Sort
│ │ ├── BubbleSort.php
│ │ ├── QuickSort.php
│ │ ├── ShellSort.php
│ │ ├── MergeSort.php
│ │ ├── InsertSort.php
│ │ └── SelectSort.php
│ │
│ ├── Query 查找篇
│ │ ├── BinaryQuery.php
│ │ ├── InseertQuery.php
│ │ ├── FibonacciQuery.php
│ │ ├── BFSQuery.php
│ │ ├── Kmp.php
│ │ ├── DijkstraQuery.php
│ │ └── QulickQuery.php
│ │
│ └── Other 其他
│ ├── MonkeyKing.php
│ ├── DynamicProgramming.php
│ ├── Fibonacci.php
│ ├── StealingApples.php
│ ├── HanoiGames.php
│ ├── BidirectionalQueue.php
│ ├── ColorBricks.php
│ ├── GetCattle.php
│ ├── OnlyNumbers.php
│ ├── Interval.php
│ ├── Maze.php
│ ├── AntsClimb.php
│ ├── Encryption.php
│ ├── ElevatorDispatch.php
│ ├── kmp.php
│ ├── TraversalOfBinary.php
│ ├── PointInTriangle.php
│ └── BigSmallReplace.php
│ └── Knapsack.php
│ └── Solution.php
│ └── RotationSort.php
│ └── Square.php
│ └── Prim.php
│ └── CartesianProduct.php
│ └── Square.php
│ └── Judge.php
│ └── Factorial.php
| └── HashTable.php
| └── RotateSort.php
│
├──LICENSE
└──README.md
To record their understanding algorithms, data structure, the process of simple comprehensive and detailed as possible, let the learning algorithm using flexible, refueling(ง •̀_•́)ง
log10100 It's equivalent to saying, "how many tens do you multiply?" the answer is, of course, two so log10100=2,The logarithmic operation is the inverse of the power operation
left | right |
---|---|
23 = 8 | log28 = 3 |
24 = 16 | log216 = 4 |
25 = 32 | log232 = 5 |
If you don't, we won't wait for you
Take binary search for example, how much time can you save by using it? Simply look for the Numbers and if the list contains 100 Numbers, you need to guess 100 times.
In other words, the number of guesses is the same as the length of the list, which is called linear time, while binary search is different if the list contains 100 elements
It takes up to seven times, and if the list contains four billion digits, it should be guessed 32 times, while the running time of the subsearch is logarithmic time O(log)
The big O notation is a special representation of how fast the algorithm can be. There's a diaosi. In fact, you often have to copy other people's code. In this case, you know how fast these algorithms are
- The running time of the algorithm increases at different speeds
- For example, the difference between a simple find and a binary search
element | Easy to find | Binary search |
---|---|---|
100 | 100ms | 7ms |
10000 | 10s | 14ms |
1 000 000 000 | 11day | 30ms |
O
said hair is pointed out that how fast algorithms, such as list containsn
element, a simple search need to check each element, so you need to performn
time operations Using largeO
saidO (n) to make this operation
, binary search need to perform logn using largeO
said toO(log n)
- Some common big O runtime
- O(log n) ,It's also called log time, and this algorithm includes binary algorithms
- O(n),Also known as linear time, this algorithm includes simple lookups.
- O(n * log n) Quick sort
- O(n2),Selection sort
- O(n!) Factorial time
- Here is the point
- The speed of the algorithm is not the time, but the growth of operands
- When we talk about the speed of the algorithm, what we're talking about is how fast will it run as the input increases
- The running time of the algorithm is expressed in large O notation
- O(log n) is faster than O (n), and the more elements that need to be searched, the more the former is faster than the latter
- From a procedural point of view, the recursion manifests itself as calling itself, and the loop does not have this form.
- Recursive proceed from the ultimate goal of the problem, and gradually to a complex problem into a simple problem, and simple question solution and complicated problem, at the same time the presence of the benchmark, can eventually get a problem, is the reverse. And the circulation is from the simple question, step by step forward development, finally get the question, is positive.
- Any cycle can be represented by recursion, but it is necessary to use the loop to achieve recursion (except for one-way recursion and tail recursion), and the stack structure must be introduced to stack the stack. 4.In general, non-recursive efficiency is higher than recursion. And recursive function calls are expensive and recursive times are limited by stack size.
- Fork 我的项目并提交你的
idea
- Pull Request
- Merge
If you find something wrong, you can initiate a issueor pull request,I will correct it in time
补充:发起pull request的commit message请参考文章Commit message 和 Change log 编写指南
Thanks for the issue or pull request of the following friends:
MIT