Skip to content

Created a macro to implement a “template” for a double-ended queue container, known as a deque, in C. As a “template”, it will be able to contain any type without using void * (which violates type safety).

AdityaManjrekar/Deque

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Deque - Doubly ended Queue

Steps to Execute: 1)g++ -std=c++11 -Wall -Wextra -pedantic -ldl test.cpp -o test 2)./test

About

Created a macro to implement a “template” for a double-ended queue container, known as a deque, in C. As a “template”, it will be able to contain any type without using void * (which violates type safety).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages