Like this:
> (my-append (list 1 2) 3)
'(1 2 3)
I know append in racket is actually to concatenate two list.
And cons just add an element to the head of a list instead of tail
Does anyone have ideas about this?
|
|
|
In Pyton, the
Racket's lists are immutable by default, the closest thing to an in-place
Notice that using immutable lists with the
In fact, Scheme's
Come to think of it, Python's |
||||
|
|
|
If you're in Racket, you probably want to look into the growable vector library (data/gvector). This provides a container type that supports many of the features you're used to with Python's growable lists. Example:
Otherwise, your question ends up reducing to: how do I make immutable linked lists work like mutable sequentially-allocated arrays? And that's not going to work well: data types are different for different reasons. |
||||
|
|
|
I don't know what you mean with "append like python", but if all you want is to insert a new element at the end of the list, you may use this:
|
|||
|