Skip to content
ouchane_cc edited this page Jul 27, 2021 · 14 revisions

Welcome to data_structures wiki/Docs :

list of 'data structures' :

  • [linked lists](/Mouradouchane/data_structures/wiki/linked list)
  • stacks

download :

1 - in your **terminal **or cmd depend on your operation system

2 - git clone https://github.com/Mouradouchane/data_structures.git

usage simple example :

  // include doubly linked list header file  
  #include "linkedlists/doubly_LinkedList.hpp"
  
  // using linked list name space [optional !] 
  using namespace linkedlist;
   
  int main(){
    // create a doubly linked list [optional !] 
    doubly_LinkeList linked_ints<int>;  

    return 0;
  }

Clone this wiki locally