All Projects → senlinzhan → Mystl

senlinzhan / Mystl

C++11 实现的简易版 STL

Projects that are alternatives of or similar to Mystl

Interview
📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。This repository is a summary of the basic knowledge of recruiting job seekers and beginners in the direction of C/C++ technology, including language, program library, data structure, algorithm, system, network, link loading library, interview experience, recruitment, recommendatio…
Stars: ✭ 21,608 (+22176.29%)
Mutual labels:  algorithm, data-structures, stl
Interview Guide
Coding/technical interview guide: data structures, algorithms, complexity analyses, interview questions
Stars: ✭ 54 (-44.33%)
Mutual labels:  algorithm, data-structures
Data Structure And Algorithms
A complete and efficient guide for Data Structure and Algorithms.
Stars: ✭ 48 (-50.52%)
Mutual labels:  algorithm, data-structures
Must Do Coding Questions
GeeksforGeeks Must-Do-Coding-Questions Solutions
Stars: ✭ 96 (-1.03%)
Mutual labels:  algorithm, data-structures
Algorithms
Study cases for Algorithms and Data Structures.
Stars: ✭ 32 (-67.01%)
Mutual labels:  algorithm, data-structures
Algorithms
Solved algorithms and data structures problems in many languages
Stars: ✭ 1,021 (+952.58%)
Mutual labels:  algorithm, data-structures
Algorithm
📌 Notes and Codes for studying data structures and algorithm
Stars: ✭ 71 (-26.8%)
Mutual labels:  algorithm, data-structures
Light Tips
Some code tips about algorithms, php and more 🔥
Stars: ✭ 705 (+626.8%)
Mutual labels:  algorithm, data-structures
Algorithmic Toolbox San Diego
✔ My Solutions of (Algorithmic-Toolbox ) Assignments from Coursera ( University of California San Diego ) With "Go In Depth" Part Which Contains More Details With Each of The Course Topics
Stars: ✭ 78 (-19.59%)
Mutual labels:  algorithm, data-structures
Advanced Data Structures With Python
Python implementations of Advanced Data Structures and Algorithms. With each code, there is an associated markdown for explanation and applications of that algorithm or data structure.
Stars: ✭ 82 (-15.46%)
Mutual labels:  algorithm, data-structures
Competitive Programming
My solutions to problems from various competitive programming websites.
Stars: ✭ 93 (-4.12%)
Mutual labels:  algorithm, data-structures
Algos
Popular Algorithms and Data Structures implemented in popular languages
Stars: ✭ 966 (+895.88%)
Mutual labels:  algorithm, data-structures
Lintcode
📜 Lintcode/Leetcode algorithm written by Java, Python and JavaScript.
Stars: ✭ 21 (-78.35%)
Mutual labels:  algorithm, data-structures
Flatbush
A very fast static spatial index for 2D points and rectangles in JavaScript
Stars: ✭ 1,031 (+962.89%)
Mutual labels:  algorithm, data-structures
Algorithm
Algorithm is a library of tools that is used to create intelligent applications.
Stars: ✭ 787 (+711.34%)
Mutual labels:  algorithm, data-structures
Kactl
KTH Algorithm Competition Template Library (... eller KTHs AC-tillverkande lapp)
Stars: ✭ 1,106 (+1040.21%)
Mutual labels:  algorithm, data-structures
Jsav
JavaScript Algorithm Visualization library
Stars: ✭ 87 (-10.31%)
Mutual labels:  algorithm, data-structures
Arabiccompetitiveprogramming
The repository contains the ENGLISH description files attached to the video series in my ARABIC algorithms channel.
Stars: ✭ 675 (+595.88%)
Mutual labels:  algorithm, data-structures
Tech Refrigerator
🍰 기술 냉장고입니다. 🛒 기술 면접 , 전공 시험 , 지식 함양 등 분명 도움될 거예요! 🤟
Stars: ✭ 699 (+620.62%)
Mutual labels:  algorithm, data-structures
Algorithm Playground
An (old) and unstructured (messy tbh) collection of programming exercises.
Stars: ✭ 75 (-22.68%)
Mutual labels:  algorithm, data-structures

My STL

简介

My STL 实现了 C++11 标准库的部分容器以及算法,同时又对标准库进行扩充。

标准库容器与算法

标准库容器 文件
向量 vector.hpp
stack.hpp
单向链表 forward_list.hpp
双向链表 list.hpp
队列 queue.hpp
优先队列 priority_queue.hpp
散列表 unordered_set.hpp
标准库组件 文件
迭代器 iterator.hpp
标准库算法 文件
堆算法 heap.hpp
数值算法 numeric.hpp
通用算法 algorithm.hpp

线程安全容器

容器 文件
阻塞队列 ThreadQueue.hpp

自定义容器与算法

自定义容器 文件
二叉搜索树 binary_tree.hpp
AVL 树 avl_tree.hpp
Trie 树 trie_tree.hpp
自定义算法 文件
冒泡排序 sort.hpp
选择排序 sort.hpp
归并排序 sort.hpp
快速排序 sort.hpp
插入排序 sort.hpp
基数排序 sort.hpp
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].