login  home  contents  what's new  discussion  bug reports     help  links  subscribe  changes  refresh  edit

Edit detail for ListProgramming revision 5 of 5

1 2 3 4 5
Editor: test1
Time: 2018/05/10 20:19:58 GMT+0
Note:

added:
Note that after modification value of original list may be useless, while return value is OK.  For example
\begin{axiom}
bb := [3, 4, 1, 2]
bs := sort! bb
bb
bs
\end{axiom}
'sort!' rearranges connections between list nodes, so orignal list looks too short.  But return value
is correct.  So remember to use return value!


List is a sequence of nodes storing data and links to other node. Each node has place for single piece of data and a single link. First node of the list contains link to second node, second node contains link to the third node, etc. There is special value representing empty list. Last node of a list contains this value in as its link. In FriCAS value stored in first node is given by first, link is obtained using rest. We test if list is empty using empty? and create empty list using empty or '[]'. We can write lists in source by surronding them with square brackets. Simple manipulation on list may look like:

fricas
l := [1, 2, 3]

\label{eq1}\left[ 1, \: 2, \: 3 \right](1)
Type: List(PositiveInteger?)
fricas
first(l)

\label{eq2}1(2)
Type: PositiveInteger?
fricas
l2 := rest(l)

\label{eq3}\left[ 2, \: 3 \right](3)
Type: List(PositiveInteger?)
fricas
first(l2)

\label{eq4}2(4)
Type: PositiveInteger?
fricas
l3 := rest(l2)

\label{eq5}\left[ 3 \right](5)
Type: List(PositiveInteger?)
fricas
empty?(l3)

\label{eq6} \mbox{\rm false} (6)
Type: Boolean
fricas
empty?(rest(l3))

\label{eq7} \mbox{\rm true} (7)
Type: Boolean

One can use elt to access value in arbitrary node effectively using list as an array. But usually this is inefficient, because such access to N-th node has to traverse all preceding nodes, giving O(N) operation. Note: some languages do not have true lists, they use arrays but call them lists. Array access is constant cost operation, use them if you need quick access to an arbitrary elements and do not need flexibility given by lists.

One of most common operations of lists is creating list from sequence of values. One can create list with given value and given tail by using cons. Several applications of cons can create any (proper) list. For example:

fricas
l := empty()$List(Integer)

\label{eq8}\left[ \right](8)
Type: List(Integer)
fricas
l := cons(3, l)

\label{eq9}\left[ 3 \right](9)
Type: List(Integer)
fricas
l := cons(2, l)

\label{eq10}\left[ 2, \: 3 \right](10)
Type: List(Integer)
fricas
l := cons(1, l)

\label{eq11}\left[ 1, \: 2, \: 3 \right](11)
Type: List(Integer)

Of course, in sequential code square brace notation '[1, 2, 3]?' is much more convenient. But cons can be used in loops:

fricas
l := empty()$List(Integer)

\label{eq12}\left[ \right](12)
Type: List(Integer)
fricas
for i in 1..10 repeat l := cons(i, l)
Type: Void
fricas
l

\label{eq13}\left[{10}, \: 9, \: 8, \: 7, \: 6, \: 5, \: 4, \: 3, \: 2, \: 1 \right](13)
Type: List(Integer)

Note that in both examples elements appear in opposite order to applying 'cons': the last application of cons creates first node of new list. We could correct this problem by using concat, but that is potentially inefficient since concat has to copy the whole list leading to quadratic algorithm (concat! avoids copy but still using it is quadratic due to need to traverse preceding nodes). Instead, the standard idiom is to reverse the list after construction. In normal case after construction the freshly build list in reverse order is no longer needed, so we can use reverse! which reuses nodes to make reversal faster:

fricas
l := reverse!(l)

\label{eq14}\left[ 1, \: 2, \: 3, \: 4, \: 5, \: 6, \: 7, \: 8, \: 9, \:{1
0}\right](14)
Type: List(Integer)

Note: after calling reverse! old value stored in l is no longer useful, we have to use value returned by reverse!.

We frequently need to create new list by applying the same transformation to all elements of list. FriCAS has special notation in this case:

fricas
l2 := [i^2 for i in l]

\label{eq15}\left[ 1, \: 4, \: 9, \:{16}, \:{25}, \:{36}, \:{49}, \:{64}, \:{81}, \:{100}\right](15)
Type: List(Integer)

Note: instead of i^2 we can use more complicated expression and we can replace for part by other FriCAS loop controls. For more details see FriCAS book, chapter 5.4 "Loops" and 5.5 "Creating lists and streams with iterators""). Here we just note that this lead to very efficient code (slightly more efficient that construction in reverse order followed by reversal).

Parts of list can be shared:

fricas
l1 := [1, 2, 3]

\label{eq16}\left[ 1, \: 2, \: 3 \right](16)
Type: List(PositiveInteger?)
fricas
l2 := cons(10, l1)

\label{eq17}\left[{10}, \: 1, \: 2, \: 3 \right](17)
Type: List(PositiveInteger?)
fricas
l3 := cons(20, l1)

\label{eq18}\left[{20}, \: 1, \: 2, \: 3 \right](18)
Type: List(PositiveInteger?)

l2 has on "own" node and other nodes are shared with l1 and l3. Similarly l3 has one "own" node and the other are shared. One can see that nodes are shared by modifying them:

fricas
setfirst!(l1, 15)

\label{eq19}15(19)
Type: PositiveInteger?
fricas
l1

\label{eq20}\left[{15}, \: 2, \: 3 \right](20)
Type: List(PositiveInteger?)
fricas
l2

\label{eq21}\left[{10}, \:{15}, \: 2, \: 3 \right](21)
Type: List(PositiveInteger?)
fricas
l3

\label{eq22}\left[{20}, \:{15}, \: 2, \: 3 \right](22)
Type: List(PositiveInteger?)

Above we used modification on to show sharing. However in general modifying shared structures may give tricky results. So normal practice is to avoid modifying shared lists. In other words we first build list which may use modification (notably reversing list in place), then we use it without further changes.

When Spad functions modify lists there is fundamental limitation: at low level lists are represented by pointers and called function has copy of a pointer to the list. So function can modify list elements, but can not change pointer in the caller. In other words, function can shorten a list, but can not change nonempty list to empty list:

fricas
fun1(l) ==
    empty?(l) => l
    l := []
    l
Type: Void
fricas
l := [1, 2, 3]

\label{eq23}\left[ 1, \: 2, \: 3 \right](23)
Type: List(PositiveInteger?)
fricas
fun1(l)
fricas
Compiling function fun1 with type List(PositiveInteger) -> List(
      PositiveInteger)

\label{eq24}\left[ \right](24)
Type: List(PositiveInteger?)
fricas
l

\label{eq25}\left[ 1, \: 2, \: 3 \right](25)
Type: List(PositiveInteger?)

To avoid this limitation usual convention is that caller should use return value of a function:

fricas
l := reverse!(l)

\label{eq26}\left[ 3, \: 2, \: 1 \right](26)
Type: List(PositiveInteger?)
fricas
l

\label{eq27}\left[ 3, \: 2, \: 1 \right](27)
Type: List(PositiveInteger?)
fricas
l := fun1(l)

\label{eq28}\left[ \right](28)
Type: List(PositiveInteger?)
fricas
l

\label{eq29}\left[ \right](29)
Type: List(PositiveInteger?)

Note that after modification value of original list may be useless, while return value is OK. For example

fricas
bb := [3, 4, 1, 2]

\label{eq30}\left[ 3, \: 4, \: 1, \: 2 \right](30)
Type: List(PositiveInteger?)
fricas
bs := sort! bb

\label{eq31}\left[ 1, \: 2, \: 3, \: 4 \right](31)
Type: List(PositiveInteger?)
fricas
bb

\label{eq32}\left[ 3, \: 4 \right](32)
Type: List(PositiveInteger?)
fricas
bs

\label{eq33}\left[ 1, \: 2, \: 3, \: 4 \right](33)
Type: List(PositiveInteger?)

sort! rearranges connections between list nodes, so orignal list looks too short. But return value is correct. So remember to use return value!

If one really wants to change argument there is a trick of prepending dummy element:

fricas
fun2(l) ==
    t := l
    t := []
    setrest!(l, t)
Type: Void
fricas
l := [1, 2, 3]

\label{eq34}\left[ 1, \: 2, \: 3 \right](34)
Type: List(PositiveInteger?)
fricas
dl := cons(0, l)

\label{eq35}\left[ 0, \: 1, \: 2, \: 3 \right](35)
Type: List(Integer)
fricas
fun2(dl)
fricas
Compiling function fun2 with type List(Integer) -> List(Integer)

\label{eq36}\left[ \right](36)
Type: List(Integer)
fricas
rest(dl)

\label{eq37}\left[ \right](37)
Type: List(Integer)

Note: we need variable t and extra assignment to t to work around weakness of interpreter. We should be able to use '[]' directly as the second argument to setrest!.