A pair of lists

Pondering the philosophy behind the language
Locked
saulgoode
Posts: 10
Joined: Sat Jul 16, 2011 6:15 am

A pair of lists

Post by 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
Posts: 2038
Joined: Tue Nov 29, 2005 8:28 pm
Location: latiitude 50N longitude 3W
Contact:

Re: A pair of lists

Post by cormullion »

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
Posts: 10
Joined: Sat Jul 16, 2011 6:15 am

Re: A pair of lists

Post by saulgoode »

cormullion wrote: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
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: A pair of lists

Post by Lutz »

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

Code: Select all

(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/develo ... nprogress/
with multiple times speed-up in unlimited precision integer division.

rickyboy
Posts: 607
Joined: Fri Apr 08, 2005 7:13 pm
Location: Front Royal, Virginia

Re: A pair of lists

Post by rickyboy »

Lutz wrote:Ps: there are new in-progress Windows binaries and source available at:
http://www.newlisp.org/downloads/develo ... nprogress/
with multiple times speed-up in unlimited precision integer division.
You da best, Lutz. Thanks!
(λx. x x) (λx. x x)

Locked