絞り込み条件を変更する
検索条件を絞り込む

すべてのカテゴリ

1 件中 1 - 1 件表示
カバー画像

Data structure, part 2

Linked listA linked list is a structure that collects multiple data like an array, but the orderof the data is not always a continuous area of memory. The pointer points tothe next data storage location. There are the following types of linked lists:(1)Singly-linked listA singly-linked list is a list in which pointers are concatenated in only onedirection. In the figure below, the route represents the start position andfollows the address pointed to by the pointer. In case of this list, you cansearch the data only in the order of "A→B→C".If you want to add data to the list, you change the value of the pointer. In thefigure below, the pointer of B is changed to 30, and the pointer of Z is cha
0
1 件中 1 - 1