• 통합검색
  • 대학레포트
  • 논문
  • 기업신용보고서
  • 취업자료
  • 파워포인트배경
  • 서식

전문지식 7,908건

lena=strlen2(a); lenb=strlen2(b); printf("strlen 실행결과 <헤더파일 이용> <a>: %d\n",strlen(a)); printf("strlen 실행결과 <함수 작성 이용> <a>: %d\n",lena); printf("strlen 실행결과 <헤더파일 이용> <b>: %d\n",strlen(b)); printf("strlen 실행결
  • 페이지 2페이지
  • 가격 500원
  • 등록일 2010.07.22
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
C로 구현한 이진검색 숫자가 입력된 파일(input)에서 숫자를 읽어와서 메뉴중 find value를 선택 후 찾고자 하는 값을 입력하면 그 값의 인덱스 번호를 출력 
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2007.11.16
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
return 1; 1.자료구조와_알고리즘(연습문제) 2.순환(연습문제) 3.배열(연습문제) 4.리스트(연습문제) 5.스택(연습문제) 6.큐(연습문제) 7.트리(연습문제) 8.우선순위큐(연습문제) 9.정렬(연습문제) 10.그래프(연습문제) 11.해싱(연습문제)
  • 페이지 1페이지
  • 가격 1,900원
  • 등록일 2010.11.22
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
source++, i++) ftemp[i] = *source; ftemp[i] = '\0'; source++; } else if(isdigit(*source)) { for(i = 0; isdigit(*source); source++, i++) ftemp[i] = *source; ftemp[i] = '\0'; } else { sscanf(ftemp, "%f", dest); dest++; *dest = *source; dest++; source++; } } int getline(char *buf, int
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2006.10.25
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
자료구조나 알고리즘에 나오는 최소신장트리를 2*2배열로 구현한것입니다. Weight값이나 Node개수는 입력값 처리하였습니다 그럼^^잘쓰세용~ ㅎㅎ 
  • 페이지 7페이지
  • 가격 1,000원
  • 등록일 2006.05.16
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
main.cpp #include <stdio.h> #include <stdlib.h> #include <string.h> #include <windows.h> #define HASH_SIZE 53 typedef char* Item; typedef struct Node{     Item name;                    // 이름     Item phoneNum;
  • 페이지 54페이지
  • 가격 3,000원
  • 등록일 2013.09.15
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
\n\n");         printf("번호 선택 : [ ]\b\b\b");         fflush(stdin);    // 버퍼 지우기         scanf("%c", &choice);         switch(choice)         { 20.1KB
  • 페이지 1페이지
  • 가격 2,300원
  • 등록일 2012.07.08
  • 파일종류 기타
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <stdlib.h> #include <conio.h> typedef struct double_node { struct double_node *llink; int data; struct double_node *rlink; }linked_node; linked_node *new_ad, *dpointer, *head; 
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2005.02.28
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <stdlib.h> #include <conio.h> #define SIZE 5 int init_Q(); int insert_Q(char insert_data); int delete_Q(); int print_Q(); int isempty(); int front_exam(); typedef struct Q_node{ int data; Q_node *link; }queue_node; queue_node *new
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2005.02.28
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <stdlib.h> #include <conio.h> #define ARRY_SIZE 10 int a[ARRY_SIZE]; int size = 0; int init_array(); int ins_value(); int del_value(); int prn_array(); 
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2005.02.28
  • 파일종류 기타
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
top