|
#include <stdio.h>
#include <stdlib.h>
#define TRUE 1
#define FALSE 0
typedef struct linked_list {
int data;
struct linked_list *link;
} linkedList;
linkedList *createlinkedList(); //list를 초기화시킨다.
linkedList *make_node(); //노드를 만든
|
- 페이지 1페이지
- 가격 1,300원
- 등록일 2012.11.13
- 파일종류 기타
- 참고문헌 없음
- 최근 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주 판매 이력 없음
|
|
insert_Node(int num) //list에 노드 추가하는 함수.
{
static int flag= FALSE;
Node *current, *temp;
current = (Node*)malloc(sizeof(Node));//메모리 할당.
temp = (Node*)malloc(sizeof(Node));//temp
printf(" [%d 추가]\n", num);
if(flag ==FALSE)
{ 이중연결리스트 소스!!!!!!!!!!
|
- 페이지 4페이지
- 가격 800원
- 등록일 2008.01.13
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
// 토큰추출하여 define,undef매크로가 나올경우
// 이중 링크드 리스트에 상입,제거하는 프로그램
#include <stdio.h>
#include <stdlib.h>
typedef struct macro_s *list_pointer;
typedef struct macro_s {
char name[30];
char value[30];
list_pointer next, prev;
}macro;
|
- 페이지 9페이지
- 가격 2,500원
- 등록일 2006.05.03
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c++로 작성한 소스입니다.
linked list를 좌우 왕복이 가능하도록 한
doubly linked list입니다.
class를 사용했습니다.
|
- 페이지 1페이지
- 가격 6,000원
- 등록일 2007.06.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c++로 작성한 소스입니다
linked list입니다.
new, delete를 사용하여 아주 효율적으로 데이타를 관리할 수 있습니다.
class를 유연하게 사용하였습니다.
|
- 페이지 1페이지
- 가격 5,000원
- 등록일 2007.06.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
C 언어를 이용해 Linked List 구현하였습니다
|
- 페이지 1페이지
- 가격 800원
- 등록일 2010.04.07
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <iostream>
#include <fstream>
#include "DAGStack.h"
#include "LinkedList.h"
#include "Vertex.h"
#include "Stack.h"
using namespace std;
#define FILE_NAME "digraph.txt" //인풋파일이름
/*클래스 스택노드
클래스 스택
클래스 버택스
클래스 리스트노
|
- 페이지 39페이지
- 가격 4,000원
- 등록일 2011.12.22
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
operator & operand
typedef struct Expression
{
element Operator;
int Operand;
int flag;
}Expression;
//Linked_list
typedef struct stackNode
{
BOOLS data;
struct stackNode * link;
}stackNode;
typedef struct ListStack_h
{
stackNode * head;
}ListStack_h;
|
- 페이지 10페이지
- 가격 1,300원
- 등록일 2006.06.13
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
class Node
{
friend class NodeList; //링크드 리스트를 위해서 프렌드 이용
friend class SellNode;
private:
string date;
string brand;
string model;
int value;
Node *next;
int count;
publ
|
- 페이지 10페이지
- 가격 1,300원
- 등록일 2007.04.30
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|