The-Streamliners / Data-Structures-and-Algorithms

Hacktoberfest's DSA Challenge, create algorithms, programs in any programming language you love and prefer! Check the ISSUE section for ideas.
MIT License
22 stars 103 forks source link

Implementation of Standard Template libraries (STL) #54

Open Iltwats opened 4 years ago

Iltwats commented 4 years ago

Give Implementation for the following STLs:--

  1. Sequence Containers: implement data structures which can be accessed in a sequential manner.
  1. Container Adaptors : provide a different interface for sequential containers.
  1. Associative Containers : implement sorted data structures that can be quickly searched (O(log n) complexity).
  1. Unordered Associative Containers : implement unordered data structures that can be quickly searched
issue-label-bot[bot] commented 4 years ago

Issue-Label Bot is automatically applying the label feature_request to this issue, with a confidence of 0.98. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback!

Links: app homepage, dashboard and code for this bot.

ultimatecoder2 commented 4 years ago

I can help in some of them..

Iltwats commented 4 years ago

Ok

On Thu, 1 Oct, 2020, 11:02 pm Deepanshu Jindal, notifications@github.com wrote:

I can help in some of them..

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/Iltwats/hacktoberfest/issues/54#issuecomment-702287126, or unsubscribe https://github.com/notifications/unsubscribe-auth/AM5BX6ADZYA25XSAZKZHV4LSIS4JNANCNFSM4SATDCZQ .

--       

www.jecrcuniversity.edu.in http://www.jecrcuniversity.edu.in

ENGINEERING | SCIENCES | MANAGEMENT | HUMANITIES | LAW | AGRICULTURE | HOTEL MANAGEMENT | JOURNALISM MASS COMMUNICATION | DESIGN | Important: The information in this email is confidential and may be legally privileged, It is intended solely for the addressee(s). Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution is prohibited and may be unlawful. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message. Thank you, JECRC University - Disclaimer "SAVE PAPER.  Good for your planet. Good for your Business"

Iltwats commented 4 years ago

@ultimatecoder2 If you choose like vector you have to provide all the basics operation with it, like:

You need not do all of these but basics would be appreciated.

Iltwats commented 4 years ago

Same goes with all the rest STLs.