-
Notifications
You must be signed in to change notification settings - Fork 0
Home
ouchane_cc edited this page Jul 27, 2021
·
14 revisions
- [linked lists](/Mouradouchane/data_structures/wiki/linked list)
- stacks
1 - in your **terminal **or cmd depend on your operation system
2 - git clone https://github.com/Mouradouchane/data_structures.git
// 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;
}