리스트 객체 : n개의 element형으로 구성된 순서 있는 모임연산 : insert(list, pos, item) : pos 위치에 요소를 추가insert_last(list, item) : 맨 끝에 요소를 추가insert_first(list, item) : 맨 처음에 요소를 추가delete(list, pos) : pos 위치의 요소를 제거clear(list) : list의 모든 요소를 제거get_entry(list, pos) : pos위치의 요소를 반환get_length(list) : list의 길이를 구함is_empty(list) : list가 비었는지 검사is_full(list) : list가 꽉찼는지를 검사print_list : list의 모든 요소를 표시 리스트의 구현배열구현이 간단하고 속도가 ..