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

전문지식 2,124건

ystem("cls"); break; case '2': /*자료 출력함수 호출*/ output_data(head); system("pause"); system("cls"); break; case '3': /*자료 역출력 함수 호출*/ reverse_data(head); // 역순으로 변환 output_data(last); // tail이 첫 노드를 가리킴 reverse_data(last); // 처음형태로 되돌림 system
  • 페이지 3페이지
  • 가격 1,000원
  • 등록일 2007.10.31
  • 파일종류 한글(hwp)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
using System; using System.Collections.Generic; using System.Text; class node { public int data; public node left; //이중 연결 리스트 public node right; } c# 으로 구현한 더블 링크드 리스트
  • 페이지 1페이지
  • 가격 800원
  • 등록일 2006.11.18
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 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> typedef struct node { int data; struct node *link; }linked_node; linked_node *new_ad, *temp, *head; int init_struct() 
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2005.02.28
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
말그대로 명함관리 프로그램입니다. 명함추가,삭제,저장등 여러가지 기능이 있고 자료구조는 링크드리스트를 사용하였습니다. 간단하고 깔끔한 프로그램입니다. 자료구조,클래스,MFC등을 공부하기위한 좋은 예제 입니다. 
  • 페이지 20페이지
  • 가격 2,000원
  • 등록일 2005.04.14
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
// Queue.h #include <stdio.h> #include <stdlib.h>// malloc, free의사용 #define TRUE 1 #define FALSE 0 typedef int boolean; typedef char element;// element 타입의정의 typedef struct _listNode *listPointer;// 노드에대하여포인터로타입정의 typedef struct _listNode { // 리스트
  • 페이지 5페이지
  • 가격 1,500원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include #include #include #include #define COMPARE(x,y) (((x)<(y) ? -1 : ((x)==(y)) ? 0 : 1) #define IS_FULL(ptr) (!(ptr)) #define IS_MEPTY(ptr) (!(ptr)) typedef struct poly_node *poly_pointer; typedef struct poly_n
  • 페이지 5페이지
  • 가격 700원
  • 등록일 2003.12.17
  • 파일종류 워드(doc)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
C 프로그래밍을 할 수 있게 되었고, 사용자에게 보다 친숙한 환경을 제공하여 그래픽을 이용한 현장의 모니터링이나, 데이터에 대한 그래픽처리등 뿐만이 아니라 공정에 대한 문제점과 함께 각종 정보에 대한 수집까지도 할 수 있게 되었고
  • 페이지 6페이지
  • 가격 2,000원
  • 등록일 2012.03.13
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
- Recursion 5주 - Sorting Performance analysis 6주 - Exercising Array 7주 - Evaluation of Expression 8주 - Circular Queue & Maze 9주 - Stack & Queue using Linked list 10주 - Equivalenece Class 11주 - Binary Search Tree 12주 - Priority Queue 13주 - Selection Tree 14주 - Union-Find Algorithm
  • 페이지 50페이지
  • 가격 5,000원
  • 등록일 2010.05.26
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
top