Kumar-laxmi / Algorithms

A Repository for algorithms in C, C++, Python and Java
Apache License 2.0
325 stars 367 forks source link

Algorithms in C++ STL #1743

Closed blindaks closed 1 year ago

blindaks commented 1 year ago

The Standard Template Library(STL) is a C++ library of container classes, algorithms, and iterators that contains many of computer science's fundamental algorithms and data structures. Since this STL is a generic library, its components are strongly parameterized: practically every component is a template.

STL provides a variety of algorithms that are implemented on any container. As a result, we no longer need to develop complicated algorithms and can instead rely on the built-in methods supplied by the STL algorithm library.

The use of these algorithms from STL saves time, effort, code and are very reliable. Hence, a single algorithm function is applied to every container type.

blindaks commented 1 year ago

@Kumar-laxmi Please assign this issue to me under GSSOC'23.

Kumar-laxmi commented 1 year ago

This repo is for algorithms from scratch and not for implementation of library functions