# dlinked_list **Repository Path**: zoziha/dlinked_list ## Basic Information - **Project Name**: dlinked_list - **Description**: 🐱‍👤`dlinked_list`: Replica of the Fortran standard library linked list container. - **Primary Language**: FORTRAN - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2022-03-03 - **Last Updated**: 2022-09-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: Fortran, fpm, Data-structures, linked-list, container ## README # Doubly Linked Lists Replica of [the Fortran standard library](https://github.com/fortran-lang/stdlib) linked list container. *Suggestions and code contributions are welcome.* ```fortran use dlinked_list_m, only: linked_list_t ``` ## Build with [fortran-lang/fpm](https://github.com/fortran-lang/fpm) ```sh fpm run --example --list ``` ```toml [dependencies] dlinked_list = { git = "https://gitee.com/zoziha/dlinked_list.git" } ``` ## Reference - [zoziha/slinked_list](https://gitee.com/zoziha/slinked_list) - [fortran-lang/stdlib](https://github.com/fortran-lang/stdlib) - [fortran-fans/forlab](https://github.com/fortran-fans/forlab) - [浅谈单链表与双链表的区别](https://blog.csdn.net/kangxidagege/article/details/80211225)