refer #283
Just how queues were made generic by @RustyLegend we need to make linkedlists generic too. A generic data-structure is one which can store any datatype, not only a single one like the current linkedlist can only store integers. We need to modify it, change the struct itself, change the function definitions as well as change the places where it is called appropriately. You can refer PR #283 for guidance and to get the complete idea what you need to do and how.
This is an advanced issue and I would suggest you attempt this only after you have a thorough understanding of the C programming language as well as this project
refer #283
Just how queues were made generic by @RustyLegend we need to make linkedlists generic too. A generic data-structure is one which can store any datatype, not only a single one like the current linkedlist can only store integers. We need to modify it, change the struct itself, change the function definitions as well as change the places where it is called appropriately. You can refer PR #283 for guidance and to get the complete idea what you need to do and how.
This is an advanced issue and I would suggest you attempt this only after you have a thorough understanding of the C programming language as well as this project