Reputation: 91
How I could build a 2 dimensional linked list in R?
Upvotes: 0
Views: 564
Reputation: 60944
For a linked list you need pointers, which R does not have (although in C++ a linked list can be implemented using no pointers). The basic R data structures are lists, data.frames, arrays etc, linked lists seem a bit to low level for R. If you provide more background as to what you want, we might be able to advise a suitable data structure in R.
Upvotes: 1