pobrn / mktorrent

A simple command line utility to create BitTorrent metainfo files
Other
472 stars 73 forks source link

General purpose linked list #42

Closed uno20001 closed 4 years ago

uno20001 commented 4 years ago

This pull request introduces a general purpose linked list module. Furthermore, the PR also addresses the same issue as #33, namely it introduces merge sort for sorting the file list. It is a stable sort, has O(N logN) asymptotic complexity, and uses just O(logN) auxiliary space.