## 13.1?簡介
本章中,我會講解用于表示數據關聯的關聯表和哈希表。關聯的數據室由鍵和值組成的序對,值由鍵唯一定義。表1顯示了書籍和作者構成的配對。書籍可以確定作者,反之由作者定義書籍則不可,這是因為一個作者可能會寫很多本書。表1中,由于P. Graham和L.Carroll分別寫了兩本書,因此他們的書無法被作者的名字唯一定義。
表1
Author Book P. Graham On Lisp P. Graham ANSI Common Lisp E. S. Raymond The Cathedral and the Bazaar K. Dybvig The Scheme Programming Language F. P. Brooks, Jr. The Mythical Man-Month L. Carroll Alice’s Adventures in Wonderland L. Carroll Through the Looking-Glass, and What Alice Found There
R^5RS定義了關聯表,因此它再所有Scheme實現中都可用。