AlgoDS-List
Algorithm & DataStructure List
This series collect curated, worthy and up-to-date links/reading list for Algorithm & DataStructure.
Overview
-
2017-Top Algorithms/Data Structures/Concepts every computer science student should know
-
2019-Think in Math. Write in Code.: Programming languages are implementation tools, not thinking tools. They are strict formal languages invented to instruct machines in a human-friendly way. In contrast, thoughts are best expressed through a medium which is free and flexible.
Visually
-
VisuAlgo: visualising data structures and algorithms through animation
-
Algorithm → AST → CSS: Inspired by Grokking Algorithms and python-execution-trace, this project aims to reveal the mechanics behind algorithms via interactive visualizations of their execution.
Resource
Blog
-
2021-《algorithm-note》中文版: 该系列包括数组,链表,树,图,递归,DP,有序表等相关数据结构与算法的讲解及代码实现。
Book
-
2011-编程之法:面试和算法心得》📚: 原编程艺术系列从 2011 年 4 月至今,写了 42 个编程问题,在创作的过程当中,得到了很多朋友的支持,特别是博客上随时都会有朋友不断留言,或提出改进建议,或 show 出自己的思路、代码,或指正 bug。为更好的改进、优化、增补编程艺术系列,特把博客上的这个程序员编程艺术系列和博客内其它部分经典文章同步到此,成立本项目。
-
2015-algs4 : Algorithms, 4th edition textbook code and libraries.
-
2017-Algorithm Design: Parallel and Sequential》📚: 15-210 aims to teach methods for designing, analyzing, and programming sequential and parallel algorithms and data structures.
-
2017-Competitive Programmer’s Handbook》📚: The purpose of this book is to give the reader a thorough introduction to competitive programming. The book is especially intended for students who want to learn algorithms and possibly participate in the International Olympiad in Informatics (IOI) or in the International Collegiate Programming Contest (ICPC).
-
2018-The Algorithms》📚: Open Source Book for Newbies to Learn Algorithms and Implement them in any Programming Language.
-
2018-算法珠玑》📚: 本书的目标读者是准备去硅谷找工作的码农,也适用于在国内找工作的码农,以及刚接触 ACM 算法竞赛的新手。
-
2018-Algorithms》📚: This textbook grew out of a collection of lecture notes that I wrote for various algorithms classes at the University of Illinois at Urbana-Champaign, which I have been teaching about once a year since January 1999.
-
2021-labuladong 的算法小抄》📚: 本网站目前可以手把手带你解决 150 道 LeetCode 算法问题,而且在不断更新,全部基于 LeetCode 的题目,涵盖了所有题型和技巧。我已经把在每篇文章的开头加上了该文章可以解决的 LeetCode 题目链接,可以看完文章立即去拿下对应题目。
-
2021-algorithm-base》📚: 专门为刚开始刷题的同学准备的算法基地,没有最细只有更细,立志用动画将晦涩难懂的算法说的通俗易懂!
-
2022-算法通关手册(LeetCode): 本书不仅仅只是一本算法题解书,更是一本算法与数据结构基础知识的讲解书。本书易于理解,没有大跨度的思维跳跃,书中使用部分图示、例子来帮助理解。本书先从基础的数据结构和算法开始讲解,再针对不同分类的数据结构和算法,进行具体题目的讲解分析。让读者可以通过「算法基础理论学习」和「编程实战学习」相结合的方式,彻底的掌握算法知识。
Collection
-
2018-algorithms : Solved algorithms and data structures problems in many languages.
-
algorithmist : The Algorithmist is a resource dedicated to anything algorithms - from the practical realm, to the theoretical realm. There are also links and explanation to problemsets.
-
Solve Data In Code : All decidable problems can be solved with algorithms.
-
2019-algo : 数据结构和算法必知必会的 50 个代码实现。
-
Algorithm Visualizer : Interactive Online Platform that Visualizes Algorithms from Code.
Course | 课程
C++
-
2017-Data Structures and Algorithms Problems 🗃️: 一系列基于 C 实现的数据结构与算法问题的总结。
-
Data Structure and Algorithms Problems: 160+ Algorithm & Data Structure Problems using C++.
Java
-
2017-AlgoDS : Implementation of Algorithms and Data Structures, Interview Questions and Answers.
-
2017-Java 101: Datastructures and algorithms in Java: Datastructures and algorithms are essential to computer science, which is the study of data, its representation in memory, and its transformation from one form to another
JavaScript
-
2015-itsy-bitsy-data-structures : All the things you didn’t know you wanted to know about data structures.
-
2017-10 Common Data Structures Explained with Videos + Exercises: Data structures are a critical part of software development, and one of the most common topics for developer job interview questions. The good news is that they’re basically just specialized formats for organizing and storing data. I’m going to teach you 10 of the most common data structures — right here in this short article.
-
2017-Basic javascript algorithms toolbox: starter kit: Here’s a list of javascript quick-to-write algos that are often useful.
-
2017-CS Playground React: Algos & Data Structures : In-Browser Algorithm and Data Structure Interview Prep.
-
2017-javascript-algorithms : This repository contains JavaScript based examples of many popular algorithms and data structures.
-
2018-javascript-datastructures-algorithms : collection of JavaScript and TypeScript data structures and algorithms for education purposes. Source code bundle of JavaScript algorithms and data structures book.
-
2019-dsa.js : Data Structures and Algorithms explained and implemented in JavaScript
Python
-
2014-algorithm : 如果要成为一个有一定水平的程序员,算法是必须要会的。算法,让你的程序变得更有灵气。
-
2017-Problem Solving with Algorithms and Data Structures using Python》📚:中文版参考这里。
-
2017-pygorithm : A Python module for learning all major algorithms
Go
-
2017-go-algorithms : Algorithms and data structures for golang.
-
2018-DataViz : Build and visualize data structures in Golang.
-
Slim : Slim is collection of surprisingly space efficient data types, with corresponding serialization APIs to persisting them on-disk or for transport.
-
gods : GoDS (Go Data Structures). Containers (Sets, Lists, Stacks, Maps, Trees), Sets (HashSet, TreeSet, LinkedHashSet), Lists (ArrayList, SinglyLinkedList, DoublyLinkedList), Stacks (LinkedListStack, ArrayStack), Maps (HashMap, TreeMap, HashBidiMap, TreeBidiMap, LinkedHashMap), Trees (RedBlackTree, AVLTree, BTree, BinaryHeap), Comparators, Iterators, …
-
go-datastructures : Go-datastructures is a collection of useful, performant, and threadsafe Go datastructures.
Rust
- 2017-Common data structures and algorithms in Rust : A collection of classic data structures and algorithms, emphasizing beauty and clarity over full generality.