티스토리 뷰
#include <stdio.h>
#include <stdlib.h>
struct node {
int data;
struct node *next;
struct node *prev;
};
struct node* head = 0;
void addToDLL(int n)
{
struct node* cur;
cur = (struct node*)malloc(sizeof(struct node));
cur->data = n;
cur->next = 0;
cur->prev = 0;
if (head == 0) {
head = cur;
return;
}
{ //끝을 찾는다
struct node* temp = head;
while (temp->next != 0) {
temp = temp->next;
}
temp->next = cur;
cur->prev = temp;
}
}
void showDLL()
{
struct node* cur = head;
if (head == 0) {
return;
}
while (cur != 0) {
printf("%d ", cur->data);
cur = cur->next;
}
return;
}
int main(void)
{
int num,data, i;
scanf("%d", &num);
for (i = 0; i < num; i++) {
scanf("%d", &data);
addToDLL(data);
}
showDLL();
}
'IT > 자료 구조' 카테고리의 다른 글
[데이터구조] DLL에 데이터 삽입/초간단 정리!! (0) | 2020.04.06 |
---|---|
[데이터구조] DLL에서 데이터 삭제/ 초간단 정리!! (0) | 2020.04.05 |
[데이터구조] SLL간의 같은 숫자 갯수 세기/ 초간단 정리!! /SLL 응용문제 (0) | 2020.04.01 |
[데이터구조] SLL에 숫자 데이터 삽입하기 / 초간단 정리!! (0) | 2020.03.31 |
[데이터구조] SLL에 숫자 데이터 삽입하기 (0) | 2020.03.30 |
댓글