|
LIST l, int data);
void SelectInsert(LPLIST l, int data, int data1);
int HeadDelete(LPLIST l);
int TailDelete(LPLIST l);
int SelectDelete(LPLIST l, int data);
void FindData(LPLIST l);
void PrintData(LPLIST l);
void Destroy(LPLIST l); 1. 데이터 삽입
2. 데이터 삭제
3. 전체 리스트
|
- 페이지 8페이지
- 가격 1,000원
- 등록일 2007.04.30
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
c", &mode);
fflush(stdin);
switch(mode)
{
case '1': // 사용자 추가
cur = makeNode(); // 사용자 정보 입력
head = append(head,cur); // 사용자 링크드 리스트에 추가
break;
case '2': // 이름 검색
printf("검색할 이름을 입력하세요
|
- 페이지 5페이지
- 가격 2,000원
- 등록일 2011.11.21
- 파일종류 압축파일
- 참고문헌 없음
- 최근 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주 판매 이력 없음
|
|
#include "std.h"
void app_init()
{
logo();
}
void app_run()
{
char ch;
while(1)
{
system("cls");
ch = menuprint(); // 함수 구현 필요
switch(ch)
{
case INSERT: book.Insert(); break;
case PRINTALL: book.PrintAll(); break;
case SEARCH: book.Search(); break;
|
- 페이지 1페이지
- 가격 1,000원
- 등록일 2011.05.31
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
C++ 언어를 이용해서 만든 콘솔 산성비 게임입니다.
스레드 버전과 일반버전 2개가 있으며, 상당한 시일이 걸려만든 프로그램입니다.
실행파일만 있습니다.
|
- 페이지 10페이지
- 가격 10,000원
- 등록일 2010.01.28
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
[C, C++] 자료구조 연결리스트 삽입, 삭제 구현 자료입니다.
|
- 페이지 1페이지
- 가격 2,000원
- 등록일 2020.12.23
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
!=NULL){
printf(\"%c\", root ->d);
preorder(root -> left);
preorder(root -> right);
}
}
void postorder(node *root)
{
if(root !=NULL){
postorder(root ->left);
postorder(root ->right);
printf(\"%c\", root ->d);
}
} (1)배열을 이용한 이진트리
(2)연결리스트 이용한 이진트리
|
- 페이지 3페이지
- 가격 1,000원
- 등록일 2006.11.26
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
if(action == 2){
if(heap[0] == NULL)
printf("힙이 비어있습니다.\n");
else{
i = 0;
while(heap[i] != NULL)
printf("%d ",heap[i++]->key);
printf("\n"); #5 - 최소 힙(배열).c 2.71KB
#5 - 최소 힙(트리(연결리스트)).c 7.37KB
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2012.01.11
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|