|
LINKED_LIST.CPP
// *************
// *LINKED_LIST*
// *************
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct LIST {
char name[20];
char phone[20];
struct LIST *prev;
struct LIST *next;
};
str
|
- 페이지 14페이지
- 가격 7,900원
- 등록일 2013.12.16
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <conio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
class Linked {
private :
struct Node {
char name[10];
int hak;
int age;
int id;
struct Node *prev;
struct Node *next;
};
Node *head;
Node *tail;
int i;
public :
Link
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 2007.02.07
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
1. Preface
1.1 Objective
수업시간에 배운 Linked list를 이용하여 수강신청 시스템을 구현하는 것이 이번 프로그래밍 과제의 목표입니다.
이번 프로그래밍 과제를 완벽히 수행하기 위해서는 Linked list의 특성을 이용하여 구조체로 리스트의 틀을 만
|
- 페이지 27페이지
- 가격 4,000원
- 등록일 2012.02.07
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
linked list를 이용하여, Queue를 구현하시오.
ADTLinkedlist.c
#include <stdio.h>
#include <stdlib.h>
// 구조체 선언
struct node
{
char name[5];
char email[30];
int tel; // 이름 메일 전화번호 선언
node *next;// 다음 노드의 주소를 가르킴
node *prev;
};
node *head; // head
|
- 페이지 16페이지
- 가격 2,800원
- 등록일 2012.04.15
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
//single linked-LIst 구현
#include <stdio.h>
#include <malloc.h> //메모리 할당을 위해서
#define FALSE 0
#define TRUE 1
typedef struct Nodes
{
int value;//데이터
struct Nodes *next;//다음 노드를 가리 킨다.
}Node;
Node *HEAD=NULL;//헤드 single linked-List의 시작
v
|
- 페이지 4페이지
- 가격 800원
- 등록일 2008.01.13
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|