HackerRank/Data Structures

[HackerRank] Linked Lists > Print the Elements of a Linked List

ruming 2021. 8. 14. 04:01

연결리스트의 데이터를 출력하는 문제다.

 

코드

void printLinkedList(SinglyLinkedListNode* head) {
    while(head){
        printf("%d\n", head->data);
        head = head->next;
    }
}

head가 0이 아닐때까지 head의 data를 출력하고 다음으로 넘어간다.