All Projects → yourtion → Learningmasteringalgorithms C

yourtion / Learningmasteringalgorithms C

Licence: mit
Mastering Algorithms with C 《算法精解:C语言描述》源码及Xcode工程、Linux工程

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Learningmasteringalgorithms C

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
Stars: ✭ 3,221 (+423.74%)
Mutual labels:  algorithm, graph, tree, stack, set, linked-list, queue
Algodeck
An Open-Source Collection of 200+ Algorithmic Flash Cards to Help you Preparing your Algorithm & Data Structure Interview 💯
Stars: ✭ 4,441 (+622.11%)
Mutual labels:  algorithm, graph, tree, stack, heap, linked-list, queue
Interview Questions
List of all the Interview questions practiced from online resources and books
Stars: ✭ 187 (-69.59%)
Mutual labels:  algorithm, graph, tree, stack, sort, linked-list, queue
Algo Tree
Algo-Tree is a collection of Algorithms and data structures which are fundamentals to efficient code and good software design. Creating and designing excellent algorithms is required for being an exemplary programmer. It contains solutions in various languages such as C++, Python and Java.
Stars: ✭ 166 (-73.01%)
Mutual labels:  graph, tree, stack, heap, linked-list, queue
Data Structures
Common data structures and algorithms implemented in JavaScript
Stars: ✭ 139 (-77.4%)
Mutual labels:  algorithm, graph, tree, stack, linked-list, queue
Data-Structure-Algorithm-Programs
This Repo consists of Data structures and Algorithms
Stars: ✭ 464 (-24.55%)
Mutual labels:  tree, linked-list, stack, queue, sort, heap
Gostl
Data structure and algorithm library for go, designed to provide functions similar to C++ STL
Stars: ✭ 254 (-58.7%)
Mutual labels:  stack, sort, set, list, queue
Containers
This library provides various containers. Each container has utility functions to manipulate the data it holds. This is an abstraction as to not have to manually manage and reallocate memory.
Stars: ✭ 125 (-79.67%)
Mutual labels:  tree, stack, set, list, queue
Algorithms
CLRS study. Codes are written with golang.
Stars: ✭ 482 (-21.63%)
Mutual labels:  algorithm, graph, tree, sort, heap
Geeksforgeeks Dsa 2
This repository contains all the assignments and practice questions solved during the Data Structures and Algorithms course in C++ taught by the Geeks For Geeks team.
Stars: ✭ 53 (-91.38%)
Mutual labels:  graph, tree, stack, linked-list, queue
Cracking The Coding Interview
Solutions for Cracking the Coding Interview - 6th Edition
Stars: ✭ 35 (-94.31%)
Mutual labels:  graph, tree, stack, linked-list, queue
Data Structures Algorithms
My implementation of 85+ popular data structures and algorithms and interview questions in Python 3 and C++
Stars: ✭ 273 (-55.61%)
Mutual labels:  algorithm, graph, tree, heap, linked-list
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, …
Stars: ✭ 10,883 (+1669.59%)
Mutual labels:  tree, stack, sort, set, list
Datastructure
常用数据结构及其算法的Java实现,包括但不仅限于链表、栈,队列,树,堆,图等经典数据结构及其他经典基础算法(如排序等)...
Stars: ✭ 419 (-31.87%)
Mutual labels:  tree, stack, sort, list, queue
Buckets Js
A complete, fully tested and documented data structure library written in pure JavaScript.
Stars: ✭ 1,128 (+83.41%)
Mutual labels:  tree, stack, set, linked-list, queue
Java Ds Algorithms
Data Structures and Algorithms in Java
Stars: ✭ 125 (-79.67%)
Mutual labels:  algorithm, graph, tree, stack, sort
Mlib
Library of generic and type safe containers in pure C language (C99 or C11) for a wide collection of container (comparable to the C++ STL).
Stars: ✭ 321 (-47.8%)
Mutual labels:  tree, stack, set, list, queue
Leetcode
High-quality LeetCode solutions
Stars: ✭ 178 (-71.06%)
Mutual labels:  algorithm, graph, tree, stack, queue
Data-structures
Data Structures in Java
Stars: ✭ 13 (-97.89%)
Mutual labels:  linked-list, stack, queue, graph
Android interviews
🚀Everything you need to know to find a android job. 算法 / 面试题 / Android 知识点 🔥🔥🔥 总结不易,你的 star 是我最大的动力!
Stars: ✭ 510 (-17.07%)
Mutual labels:  stack, heap, list, queue

《算法精解:C语言描述》源码及Xcode工程、Linux工程

Mac 下使用 Xcode 打开 MasteringAlgorithms.xcodeproj 即可。Algorithms.xcodeproj 为算法库文件工程。每个 Example 都是单独的运行文件。

Mac 或者 Linux 命令行

只需要有简单的 c 编译环境cc

然后执行 ./run bfs,其中 bfsExample 中的示例目录。

也可以自己使用cc gcc 等,gcc source/*.c Example/bfs/main.c -I ./include -o bfs && ./bfs

ScreenShot

数据结构

链表

栈和队列

集合

哈希表

堆和优先队列

算法

排序和搜索

数值计算

数据压缩

数据加密

图算法

几何算法

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].