I've been trying to work this out for more than an hour. I need to move an integer from middle of the list to the beginning. There is no option for moving an integer, it would be fine if I could insert one at the beginning and delete the old one from middle, but you can't do that either. (you can delete every entry of a specific integer, not a single one)
I read everything there was about std::forward_list on cplusplus.com and googled this for 15 minutes, no results.
You can use Dobly Link list. ( i hope simple link list can also do your task) Here is the link for doubly link list. https://www.hackerearth.com/practice/notes/doubly-linked-list-data-structure-in-c/ Follow these steps: 1. Copy middle element. 2. add that copied element to the start of list. 3. remove the middle element. If you are using some library of list that is restricting you, make your own class of list of which removal from any index is possible.