How I could build a 2 dimensional linked list in R?
1 Answer
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.