• AI글쓰기 2.1 업데이트
  • AI글쓰기 2.1 업데이트
  • AI글쓰기 2.1 업데이트
  • AI글쓰기 2.1 업데이트
  • 통합검색(682)
  • 리포트(637)
  • 시험자료(30)
  • 논문(10)
  • 서식(3)
  • 방송통신대(2)
판매자 표지는 다운로드시 포함되지 않습니다.

"null Case" 검색결과 181-200 / 682건

  • [자료구조] 스텍(stack)을 이용한 카드 기억 게임
    만큼 시간 지연#define randomize() srand((unsigned)time(NULL)) // 난수 발생기 초기화#define random(n) (rand() % (n ... ;}// 커서를 숨기거나 다시 표시한다.void setcursortype(CURSOR_TYPE c){CONSOLE_CURSOR_INFO CurInfo;switch (c) {case ... NOCURSOR:CurInfo.dwSize=1;CurInfo.bVisible=FALSE;break;case SOLIDCURSOR:CurInfo.dwSize=100;CurInfo
    리포트 | 3,500원 | 등록일 2013.04.05
  • 데이터구조(다항식+링크드리스트)
    ;}else{polynode->expon = 1;}break;}}if(poly!=NULL && check == 0){poly[j] = '\0';transCoef = atoi(poly ... );polynode->coef = transCoef;polynode->expon = 0;}polynode->link = NULL;return polynode;}void ... ){pointer starta;pointer d=NULL;pointer lastd;int sum, done = FALSE;starta = first;first = first->link
    리포트 | 14페이지 | 2,000원 | 등록일 2011.10.16
  • 링크드 리스트의 삽입 삭제
    data[10];list_pointer link;}node;list_pointer ptr = NULL;void printList(list_pointer sp){list_pointer ... temp;temp = sp;printf("\n \n");while (temp != NULL) {printf(" %s \n", temp->data);temp = temp->link ... 경우if(temp->link==NULL){ptr=temp;}//노드가 여러개일겨우else{invertlist(temp->link);//선택한 노드의 다음 노드가가 맨 마지막 노드일
    리포트 | 1,000원 | 등록일 2010.06.11
  • [C] Hash를 이용하여 삽입, 삭제, 검색
    6:Quit) : ");scanf("%d", &menu_num);// 종료 조건일 경우 종료if(menu_num == 6) break;switch(menu_num){case 1 ... :// 파일 읽기FileLoad(sList);break;case 2:// 학생 삽입InsertStudent(sList);break;case 3:// 학생 검색FindStudent(s ... List);break;case 4:// 학생 삭제DeleteStudent(sList);break;case 5:// 파일 저장FileSave(sList);break;}}// 종료
    리포트 | 2,500원 | 등록일 2010.06.16
  • 중위표기법(Infix)를 전위(Prefix)와 후위(Postfix)로 변환하는 프로그램
    void main(){while(1){system("cls");switch(menu()) {case 1: prefix_convert(); break;case 2: postfix_c ... onvert(); break;case 3: exit(0);}}}int menu(){int choice;printf("\t\t\t┏━━━━━━━━━━━┓\n");printf("\t ... {*symbol = expr[(*n)++];switch (*symbol){case '(' : return lparen;case ')' : return rparen;case '
    리포트 | 6페이지 | 1,000원 | 등록일 2011.04.05
  • 성적관리프로그램
    은 형 변수 선언struct name_grade *HEADER = NULL; //구조체 포인터 변수 HEADER 를 널로 초기화char dname[30];//문자형 배열 이름 값 ... &ch);//입력switch(ch){case 1:HEADER = insertNewElement(HEADER);break;//성적과 이름을 입력case 2:printf("삭제할 이름 ... : ");scanf("%s", dname);HEADER = deleteElementBasedName(HEADER,dname);break;//이름을 삭제case 3:printf
    리포트 | 2,000원 | 등록일 2010.07.27
  • C언어 이중 포인터를 사용 이진 탐색 트리 소스
    = NULL;tree_pointer stack[TREE_LEVEL];int top = -1;tree_pointer* search(int);tree_pointer modified_search ... . Display tree\n 4. Exit\n Input Number => ");scanf("%d", &nSelect);switch(nSelect){case 1 :printf("Input ... the insert data : ");scanf("%d", &nData);insert_node(nData);break;case 2 :printf("Input the delete
    리포트 | 9페이지 | 1,500원 | 등록일 2010.04.07
  • C, 연결리스트를 이용한 이진탐색트리
    (list **ptr,int key){if(!(*ptr)){(*ptr)=(list *)malloc(sizeof(list));(*ptr)->data=key;(*ptr)->left=NULL ... ;(*ptr)->right=NULL;}else if((*ptr)->data==key)printf("값이 이미 존재합니다");else if((*ptr)->dataright),key ... , *t;p=NULL;t=*ptr;while(t!=NULL && (key != t->data)){p=t;if(key < t->data){printf(" LEFT ");t = t
    리포트 | 1,000원 | 등록일 2009.12.22 | 수정일 2013.12.23
  • 후위표기 변환 계산
    init(LinkedStackType *s){s->top = NULL;}int is_empty(LinkedStackType *s){return (s->top == NULL);}int ... = (StackNode *)malloc(sizeof(StackNode));if( temp == NULL ){fprintf(stderr, "메모리 할당 에러\n");return ... ){case '(':case ')':return 0;case '+':case '-':return 1;case '%':return 2;case '*':case '/':return 3
    리포트 | 1,000원 | 등록일 2010.05.31
  • [운영체제(OS) Shell(셸) 구현]운영체제(OS) Shell 구현
    (*fptr)(char *arg[]);}builtin[6] ={ {"cd", cd_func},{"pwd",pwd_func}, {"exit",exit_func},{NULL,NULL ... =0; or_arglist[i]; i++)or_arglist[i] = NULL;for(i=0; and_arglist[i]; i++)and_arglist[i] = NULL;for(i ... =0; arglist[i]; i++)arglist[i]=NULL;}}char ** parse(char *line){// parseingchar *token;static char
    리포트 | 23페이지 | 2,000원 | 등록일 2010.06.15
  • [실습7-1] Post fix
    을 이용하여 중위 표기 식을 후위 표기 식으로 바꾸는 방법- 입력받은 수식에 대해 왼쪽에서 오른쪽으로 char형으로 하나씩 NULL이 나올 때 까지 읽는다.1. 여는 괄호를 만나 ... 을 계산하는 방법- 입력받은 수식에 대해 왼쪽에서 오른쪽으로 char형으로 하나씩 NULL이 나올 때 까지 읽는다.1. 피연산자를 만나면 stack에 push 한다.2. 연산자를 만나 ... evalPostfix(postfix){int length = strlen(postfix);for(i=0 to i ? length) do {symbol ← postfix[i];case {symbol
    리포트 | 13페이지 | 1,000원 | 등록일 2011.11.15
  • 데이터 구조 - Linked List 연산
    debugging in the case that this program hassome errors.3. Flow chart``4. Process(1) The first part of this ... solution in this problem.for(a = aa ;a != NULL ; a = a->next ){for(b = bb ; b != NULL ; b = b->next ... ){i = (a->coef) * (b->coef);j = (a->expon) + (b->expon);for(l=p;l !=NULL;l = l->next){if(l->expon == j
    리포트 | 9페이지 | 1,000원 | 등록일 2011.06.26
  • dijksta를 이용한 vod검색
    거리를 구한다.5. 소스 코드 분석void LList1::Add(class MovNode *obj){if(root == NULL){curr = root = obj;obj ... ->next = NULL;}else{curr->next = obj;obj->next = NULL;curr = obj;}} //영화정보를 추가하는 함수void LList1::Print(){c ... ;}} //출력 부분 (제목과 요금 시청기록)void LList2::Add(class MemNode *obj){if(root == NULL){curr = root = obj;obj
    리포트 | 1,500원 | 등록일 2010.10.25
  • 자바스윙을 이용한 탐색기
    ol) {File f = new File(dir, filenames[row]);switch (col) {case 0:return filenames[row];case 1:return ... new Long(f.length());case 2:return new Date(f.lastModified());case 3:return f.isDirectory ... () ? Boolean.TRUE : Boolean.FALSE;case 4:return f.canRead() ? Boolean.TRUE : Boolean.FALSE;case 5:return f.c
    리포트 | 1,000원 | 등록일 2010.06.17
  • API(SIN함수)
    ;wcex.hIcon=LoadIcon(NULL,IDI_APPLICATION);wcex.hCursor=LoadCursor(NULL, IDC_ARROW);wcex ... .hbrBackground=(HBRUSH)(COLOR_WINDOW+1);wcex.lpszMenuName=NULL;wcex.lpszClassName="NodelApp";wcex.hIconSm ... =LoadIcon(NULL,IDI_APPLICATION);RegisterClassEx(&wcex);hWnd = CreateWindow(wcex.lpszClassName,"sin 함수 그래프
    리포트 | 3페이지 | 1,500원 | 등록일 2010.08.24
  • API(계산기)
    ;wcex.hInstance = hInstance;wcex.hIcon = LoadIcon(NULL, IDI_APPLICATION);wcex.hCursor = LoadCursor ... (NULL, IDC_ARROW);wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);wcex.lpszMenuName = NULL;wcex ... .lpszClasPPEDWINDOW,CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL,hInstance, NULL
    리포트 | 12페이지 | 1,500원 | 등록일 2010.08.24 | 수정일 2021.12.13
  • 하자담보 보증서(Warranty Guarantee) 샘플 및 설명
    to transmit in any case the full wording of your demand for payment and of your above mentioned ... 전송하여 하여야 합니다. 그리고 동시에 상기 서류 원본을 당행으로 발송하여야 합니다.In case at the time of demand for payment under this ... , within working hours. After that datethis guarantee will be null and void automatically whether it
    리포트 | 3페이지 | 1,500원 | 등록일 2012.09.11
  • 연결리스트로 구현한 주소록
    ;}List::List() //List Class의 생성자{head = new node; //head를 동적 할당head->next = NULL; //head의 next는 비어있음}List ... 의 소멸자{node* temp;while(head->next != NULL){ //모든 노드 deletetemp = head;head = head->next;delete temp ... break;case '2' : remove();break;case '3' : remove_all();break;case '4' : search();break;case '5
    리포트 | 1,500원 | 등록일 2010.04.06
  • 이진트리(삽입, 삭제, 검색, 출력 )
    (a == NULL) //아무런 노드가 없을때 ROOT 에 할당{a=(Node*)malloc(sizeof(Node)); //새로운 노드 동적할당a->NAME=na;a->PHONE ... =po;a->ADDRESS=ad;a->left=NULL;a->right=NULL;}else // 하나라도 노드가 있을시{temp1=a;while(temp1 != NULL) // 입력 ... ;temp2->PHONE=po;temp2->ADDRESS=ad;temp2->left=NULL;temp2->right=NULL;}else // 오른쪽 노드를 생성 한다.{temp2
    리포트 | 1,000원 | 등록일 2010.12.08 | 수정일 2021.01.04
  • 중위수식 -> 후위수식 [postfix] 변환 계산
    tack) == TRUE) {ERR_MSG("stack is empty");return FALSE;}if(outElem != NULL) { *outElem = stack->ary ... (*infix) {switch(*infix) {case ' ': // white space는 skip 한다break;case '0':case '1':case '2':case '3 ... ':case '4':case '5':case '6':case '7':case '8':case '9':buf[bufPoint++] = *infix; // 한자리수 이상 계산을 위한 임시
    리포트 | 5페이지 | 1,000원 | 등록일 2012.05.27
  • EasyAI 무료체험
해캠 AI 챗봇과 대화하기
챗봇으로 간편하게 상담해보세요.
2025년 10월 15일 수요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
8:29 오전
문서 초안을 생성해주는 EasyAI
안녕하세요 해피캠퍼스의 20년의 운영 노하우를 이용하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 AI가 방대한 정보를 재가공하여, 최적의 목차와 내용을 자동으로 만들어 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
- 스토어에서 무료 이용권를 계정별로 1회 발급 받을 수 있습니다. 지금 바로 체험해 보세요!
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감