I would like to use linked lists in Fortran to hold an array of data of an undefined length.

I have the following setup:

TYPE linked_list
    INTEGER :: data
    TYPE(linked_list) :: next_item => NULL()
END TYPE

Now say I create such a list:

TYPE(LINKED_LIST) :: example_list
example_list%data =1
ALLOCATE(example_list%next_item)
example_list%next_item%data = 2
ALLOCATE(example_list%next_item%next_item)
example_list%next_item%next_item%data = 3

My question is, if I perform:

DEALLOCATE(example_list)

will all the nested levels also be deallocated or do I need to traverse the list to the deepest element and deallocate from the deepest element upward?

link|improve this question

4  
It's been a long time since I did this in Fortran, but I'm pretty sure you have to deallocate manually. If you just deallocate the head, then you'll lose the reference and have a memory leak. – ChrisF Feb 7 at 22:04
Yes. I was quite afraid of that. I must say though, I'm having trouble, what's the phrase, rolling my own garbage collection? – emiller Feb 7 at 22:09
You can't implement memory managed fortran. – Stefano Borini Feb 7 at 22:57
Is that sarcasm or a statement of fact? – emiller Feb 8 at 3:07
1  
@emiller Keep all your arrays allocatable. Pair each allocate statement with a deallocate statement. Use pointers only when necessary or very convenient. If you follow these three, you will be fine. Fortran forces you to keep track of your memory, which I really appreciate about Fortran - it discourages lazy programming, and makes you know your program better. Great question and answer though. – IRO-bot Feb 8 at 17:00
show 4 more comments
feedback

1 Answer

up vote 8 down vote accepted

You have to deallocate each node manually. This is where "Object oriented" like style comes useful.

module LinkedListModule
    implicit none
    private

    public :: LinkedListType
    public :: New, Delete
    public :: Append

    interface New
        module procedure NewImpl
    end interface

    interface Delete
        module procedure DeleteImpl
    end interface

    interface Append
        module procedure AppendImpl
    end interface

    type LinkedListType
        type(LinkedListEntryType), pointer :: first => null()
    end type

    type LinkedListEntryType
        integer :: data
        type(LinkedListEntryType), pointer :: next => null()
    end type

contains

    subroutine NewImpl(self)
        type(LinkedListType), intent(out) :: self

        nullify(self%first) 
    end subroutine

    subroutine DeleteImpl(self)
       type(LinkedListType), intent(inout) :: self

       if (.not. associated(self%first)) return

       current => self%first
       next => current%next
       do
           deallocate(current)
           if (.not. associated(next)) exit
           current => next
           next => current%next
       enddo

    end subroutine

    subroutine AppendImpl(self, value)

       if (.not. associated(self%first)) then
           allocate(self%first)
           nullify(self%first%next)
           self%first%value = value
           return
       endif


       current => self%first
       do
           if (associated(current%next)) then
               current => current%next
           else
             allocate(current%next)
             current => current%next
             nullify(current%next)
             current%value = value
             exit
           endif
       enddo

    end subroutine

end module

Beware: it's past midnight and I'm not really fond of coding in a browser window. This code may not work. It's just a layout.

Use like this

program foo
   use LinkedListModule
   type(LinkedListType) :: list

   call New(list)
   call Append(list, 3)
   call Delete(list)
end program
link|improve this answer
1  
Bingo. The DeleteImpl method is exactly what I was looking for. How nice and neat this object oriented fortran is. – emiller Feb 8 at 3:09
@emiller: It's not object oriented. It's object oriented style. – Stefano Borini Feb 8 at 8:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.