리스트,list

리스트,list (rev. 1.12)

Operations
  • size() or length()
  • get(i)
  • set(i, value)
  • add(i, value) insert??
  • remove(i)

데크,deque와의 비교
deque list
add_first(x) add(0, x)
remove_first() remove(0)
add_last(x) add(size(), x)
remove_last() remove(size() - 1)

연결리스트,linked_list
{
node를
포인터,pointer

Linus Torvalds' good taste argument for linked lists, explained
https://github.com/mkirchner/linked-list-good-taste
https://news.ycombinator.com/item?id=25326552

AKA 링크드 리스트, 링크트 리스트, 연결된 리스트[1], 연결 목록[2]
}

skip_list - 작성중

list_comprehension
{


Up: 리스트,list functional_programming? functional_PL?
}


AKA 목록