티스토리 뷰
#include <stdio.h>
#include <stdlib.h>
struct node
{
int data;
struct node *next;
};
struct node *head;
void addToSLL(int n)
{
struct node *cur;
cur = (struct node *)malloc(sizeof(struct node));
cur->data = n;
cur->next = 0;
if (head == 0)
{
head = cur;
return;
}
else
{
struct node *temp = head;
while (temp->next != 0)
{
temp = temp->next;
}
temp->next = cur;
return;
}
}
void showSLL()
{
struct node *cur = head;
while (cur != 0)
{
printf("%d ", cur->data);
cur = cur->next;
}
return;
}
int main(void)
{
int num;
int data;
int i;
scanf("%d", &num);
for (i = 0; i < num; i++)
{
scanf("%d", &data);
addToSLL(data);
}
showSLL();
return 0;
}
'IT > 자료 구조' 카테고리의 다른 글
[데이터구조] SLL에 숫자 데이터 삽입하기 / 초간단 정리!! (0) | 2020.03.31 |
---|---|
[데이터구조] SLL에 숫자 데이터 삽입하기 (0) | 2020.03.30 |
[데이터 구조] SLL의 데이터를 역순으로 보여주기 (0) | 2020.03.26 |
[데이터 구조] SLL에서 데이터 찾아서 지우고 결과 출력하기(변형) (0) | 2020.03.26 |
[데이터 구조] SLL에서 데이터 찾아서 지우고 결과 출력하기 (0) | 2020.03.26 |
댓글