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

Edit detail for ListProgramming revision 3 of 5

1 2 3 4 5
Editor: test1
Time: 2018/05/10 15:12:35 GMT+0
Note:

changed:
-is to reverse the list after constriction.  In normal case after construction the
is to reverse the list after construction.  In normal case after construction the

changed:
-l2 has on "own" node and other nodes are shared with l1 and l3.  Similarely l3 has one "own" node
l2 has on "own" node and other nodes are shared with l1 and l3.  Similarly l3 has one "own" node

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.