A pair of lists

Started by saulgoode, April 28, 2013, 09:21:06 PM

Previous topic - Next topic

saulgoode

I am writing a tutorial on developing a Scheme compiler and one of the data structures I am using is a pair of lists, where the car of the pair is a list of the symbols and the cdr of the pair is a list of their values.



For example, an a-list of the data might be '((a . 10) (b . 20) (c . 30))

And the p-list version would be '((a 10) (b 20) (c 30))

My data structure would be '((a b c) 10 20 30)



I am wondering if there is a common name for such a data structure (along the lines of a-list and p-list). If not, I would be open to suggestions on how I should refer to it.

cormullion

#1
Do you mean '((a b c) (10 20 30))? Perhaps an 'indexed list'?



You might try asking on comp.lang.lisp. They have opinions to spare.



Just don't call it an iList. That's probably trademarked ...

saulgoode

#2
Quote from: "cormullion"Do you mean '((a b c) (10 20 30))?


Functionally the pair of lists would be equivalent to '((abc) . (10 20 30)) but when printed, the dotted notation gets removed such that the items in the second list directly follow the first list.



"Indexed list" would still seem a fairly apt term.

Lutz

#3
The term pair of lists makes sense to me and relates to your p-list using the transpose function:


(transpose '((a b c) (10 20 30)))  --> ((a 10) (b 20) (c 30))

Ps: there are new in-progress Windows binaries and source available at:

 http://www.newlisp.org/downloads/development/inprogress/">http://www.newlisp.org/downloads/develo ... nprogress/">http://www.newlisp.org/downloads/development/inprogress/

with multiple times speed-up in unlimited precision integer division.

rickyboy

#4
Quote from: "Lutz"Ps: there are new in-progress Windows binaries and source available at:

 http://www.newlisp.org/downloads/development/inprogress/">http://www.newlisp.org/downloads/develo ... nprogress/">http://www.newlisp.org/downloads/development/inprogress/

with multiple times speed-up in unlimited precision integer division.

You da best, Lutz.  Thanks!
(λx. x x) (λx. x x)