Comparison of data structures, algorithms, basic informatics, online resources

I am looking for an online resource related to data structures and algorithms. The main thing that interests me is a kind of complete list of things like: when a data structure or algorithm is used, the pros and cons compared to each other, the use of real life, etc.

I have several popular books on this topic, such as "Introduction to Algorithms" and "Guide to Developing Algorithms", and have also found code implementations of various data structures and algorithms online. But I can’t find a web page that lists all of them together.

So, I'm looking for an online help page where I can get an overview of all these structures (lists, maps, sets, trees, queues and their various implementations, and ideally search or sort algos - sort merge, quickly sort, their performance with big O etc.), possibly all in a tabular format, with their functions, comparisons and general use, listed together.

Not sure if such a resource exists. I would appreciate any indication of the right direction.

Thank you very much in advance

+3
source share
6 answers

Please try the following link: Algorithm Dictionary

+4
source

, , www.youtube.com/edu, , , .

+2

Wikipedia?
, , .

!

+1
0

Here is a website showing a comparison of O analysis results at http://bigocheatsheet.com/

0
source

Source: https://habr.com/ru/post/1720020/


All Articles