Skip to content

Commit 0244fb9

Browse files
authored
Include example applications for linked list
1 parent a84a154 commit 0244fb9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

FortranCon2021-linked_list/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ __Session:__ Fortran-lang minisymposium (10 min).
99
__Abstract:__
1010

1111
The Fortran-lang stdlib was introduced to provide extensive support to Fortran developers by providing modules that can be directly used in their programs. A linked list is one of the classical data structures that has numerous applications.
12-
The goal of the Google Summer of Code project was to implement an efficient linked list module that is devoid of any memory leaks. The module covers a bunch of APIs that are important in the initial phase.
12+
Example:
13+
- It can be used as a self-growing container.
14+
- It can store linearly dependent data. (web history, slides in some presentation, etc)
15+
- Acts as a building block for other data structures such as Priority Queue, Fibonacci Heap, stack, queue, etc.
16+
17+
The goal of the Google Summer of Code project was to implement an efficient linked list module that is devoid of any memory leaks. The module covers several APIs that are important in the initial phase.
1318
The Linked list developed is a Generic Heterogeneous list i.e. it supports storage of multiple data types in the same list.
1419
The APIs can be further explained in detail in the presentation with suitable examples.

0 commit comments

Comments
 (0)