Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yeaseen/genericlistcpp
An implementation of a generic ArrayList and a generic LinkedList in cpp which can store multiple data type variables.
https://github.com/yeaseen/genericlistcpp
arraylist arraylistassignments cpp17 data-structure data-structure-cpp data-structures-algorithms multiple-data-type variant variant-calls
Last synced: about 2 months ago
JSON representation
An implementation of a generic ArrayList and a generic LinkedList in cpp which can store multiple data type variables.
- Host: GitHub
- URL: https://github.com/yeaseen/genericlistcpp
- Owner: Yeaseen
- Created: 2020-05-06T19:53:10.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-21T09:38:57.000Z (about 1 year ago)
- Last Synced: 2023-12-21T18:32:27.818Z (about 1 year ago)
- Topics: arraylist, arraylistassignments, cpp17, data-structure, data-structure-cpp, data-structures-algorithms, multiple-data-type, variant, variant-calls
- Language: C++
- Homepage:
- Size: 1.03 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
This repo contains a data structure for storing multiple data types in a single array container in cpp.
- For Linux users, run `g++ --version` to check the g++ compiler version. If it's version 7 or later, your compiler likely supports C++17. Otherwise, update gcc.
- Try online [here](https://www.onlinegdb.com/online_c++_compiler), select C++17 as the compiler.
- In Windows, to run this cpp program, you must have a compiler supporting c++17 features. The following link given [here](http://candcplusplus.com/enable-c17-in-code-blocks-mingw-gcc-for-all-version-with-pictures ) is a keyway to downloading the updated compiler and enabling necessary compiler supports in Code::Blocks.