Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- +연산자 의미
- putchar()
- 비트마스크
- 원 둘레
- 연습문제
- 원 면적
- JavaScript
- c
- PERPECT
- 백엔드 개발자 #로드맵
- 3강
- Chapter3
- 3판
- 실습예제
- ㅔㄴ트 안잉
- perpectC
- eslint
- eslint 쉼표필요 오류
- 오류
- 3장
- 정답
- getchar()
- 티스토리 커버이미지 변경
- 풀이
- 쉼표필요
- 합
- perpect C
- () (+) 차이
- 점프 투 파이썬 #패키지 # 비전공자
- 평균
Archives
- Today
- Total
옥수수와 식빵 그리고 코딩
로또, 연결리스트 출력, 연결리스트 마지막 리스트에 노드 붙이기 본문
중복 없는 랜덤 배열 생성할 때
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
연결리스트 마지막 리스트에 노드 붙이기
NODE *temp = *head;
// 마지막 노드를 찾는 루프
while(temp->next != NULL)
{
temp = temp->next;
}
// 마지막 노드일 경우 새로 생성한 노드 연결
temp->next = newNode;
https://ititit1.tistory.com/78
Comments