|
) srand((unsigned)time(NULL)) //난수 초기화 매크로
#define N 1000
void swap(int a[], int from, int to) // swap 하는 함수
{
int temp;
temp = a[from];
a[from] = a[to];
a[to] = temp;
}
main()
{
int i,j,min,loop;
int a[N];
randomize();
for(i=0;i<N;i++)
a[i] = rand()%1000 + 1;
printf("\n\n------------
|
- 페이지 7페이지
- 가격 1,000원
- 등록일 2006.06.13
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
LinkedlistQueue.h
#ifndef LINKEDLISTQUEUE_H
#define LINKEDLISTQUEUE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct tagNode{
int Data;
struct tagNode* NextNode;
}Node;
typedef struct tagLinkedQueue{
Node* Front; // 전단을가리키는포인
|
- 페이지 20페이지
- 가격 2,000원
- 등록일 2011.10.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <string.h>
int main()
{
char str[1024];
char arr[100][1000]; //토큰 저장
int i = 0;
char * token, ch;
char div[] = " ";
int order = -1; //arr[][]배열에 저장하기 위한 변수
int refresh;
printf(" ** Input a sentence ** \n\n : ");
|
- 페이지 1페이지
- 가격 2,000원
- 등록일 2011.01.10
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
32px; POSITION: absolute; TOP: 176px" runat="server" Height="8px" Width="72px">가입이유</asp:label>
<asp:label id="Label4" style="Z-INDEX: 103; LEFT: 232px; POSITION: absolute; TOP: 144px" runat="server" Height="8px" Width="64px">비밀번호</asp:label>
<asp:label id="Label3" st
|
- 페이지 6페이지
- 가격 1,000원
- 등록일 2010.02.26
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
Max heap의 삽입, 삭제 및 현재 상태를 출력하는 프로그램 없음
|
- 페이지 3페이지
- 가격 2,000원
- 등록일 2010.06.03
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
행맨 게임입니다.
|
- 페이지 1페이지
- 가격 500원
- 등록일 2009.08.17
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
lse if (month==2 && year%400==0)
sumDay = 29;
else
sumDay = 28;
cout << year << "년 " << month << "월의 달력입니다." << endl;
cout << "Mon Tue Wed Thu Fri Sat Sun" << endl << endl;
for (int i = 1; i < detectDay(year, month, 1); i++)
cout << "
|
- 페이지 3페이지
- 가격 1,000원
- 등록일 2006.01.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
자료구조는 단순한 데이터 저장 방법을 넘어서 시스템의 전반적인 성능과 효율성을 결정짓는 중요한 요소이므로 이에 대한 충분한 이해와 올바른 선택이 필수적입니다.
Ⅳ. 참고문헌
암스트롱 수베로 (류태호 역). 『코드 없는 알고리즘과
|
- 페이지 5페이지
- 가격 2,000원
- 등록일 2024.01.30
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
구조를 적용할 방법을 계속해서 연구하고 발전시켜 나가야 할 필요가 있습니다.
Ⅳ. 참고문헌
제이 웬그로우 (심지현 역). (2021, 2판). 『누구나 자료 구조와 알고리즘』. 길벗
알리 알모사위 (정주연 역). (2017). 『일상 속 스타트한 선택을 위
|
- 페이지 5페이지
- 가격 2,000원
- 등록일 2023.11.22
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
구조체정의
element item;
listPointer link;
}listNode;
typedef struct{// Queue의구조체정의
listPointer qFront;
listPointer qRear;
} Queue;
void initQueue(Queue *Q);
boolean isEmpty(Queue* Q);
void addQueue(Queue *Q, element Data);
element deleteQueue(Queue *Q);
int getQueueLengt
|
- 페이지 5페이지
- 가격 1,500원
- 등록일 2010.05.28
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|