옥수수와 식빵 그리고 코딩

로또, 연결리스트 출력, 연결리스트 마지막 리스트에 노드 붙이기 본문

2022/자료구조

로또, 연결리스트 출력, 연결리스트 마지막 리스트에 노드 붙이기

옥식 2022. 5. 30. 22:43

중복 없는 랜덤 배열 생성할 때

int sran(int seed)//seed는 사용자 입력
{
	srand(seed);
	int random = 0;
	for (int i = 0;i < 7;i++)
	{
		ran[i] = (rand() % 7) + 1;
		for (int j = 0;j < i ;j++)//i-1하면 중복 나옴!!
		{
			if (ran[i] == ran[j])
			{
				i--;//중복 발생 시 i번재 난수 재생성
				break;
			}
		}
		
	}
	for (int i = 0;i < 7;i++)//출력
	{
		printf("randNum[%d] : %d\n", i+1, ran[i]);
	}
}

for (int j = 0;j < i ;j++)//i-1하면 중복 나옴!!

이 문장을 기억할 것!

 

*연결리스트 출력

https://tildacoderecorder.tistory.com/96

 

[자료구조] C언어 연결리스트(Linked list) 생성 / 출력

연결리스트 만들기 "월" "화" "수" "목" "금" 등 요일을 데이터값으로 갖는 연결리스트를 만들어보자. typedef struct node {         char data;         struct node* next;     } ..

tildacoderecorder.tistory.com

 

연결리스트 마지막 리스트에 노드 붙이기

NODE *temp = *head;
		// 마지막 노드를 찾는 루프
		while(temp->next != NULL)
		{
			temp = temp->next;
		}
		// 마지막 노드일 경우 새로 생성한 노드 연결
		temp->next = newNode;

https://ititit1.tistory.com/78

 

[자료구조] C 연결리스트 마지막 리스트에 노드 붙이기

#include #include typedef struct node{ int data; struct node* next; }NODE; //전달받은 데이터를 저장하는 하나의 노드를 생성하는 함수 NODE* createNode(int data) { NODE *temp = (NODE*)malloc(sizeof(NOD..

ititit1.tistory.com

 

Comments