Darknet/YOLO has a custom-written "list" structure in the old C codebase which is used in several locations. The linked lists are converted into massive linear arrays so they can be referenced in a random manner.
Tonight I *finally* started converting all that code to std::vector. I've wanted to do this for a while. Going to be much cleaner, easier to maintain, and I'll be certain we have no memory leaks. #Darknet #YOLO #c #cpp