|
데이터에 임의의 코드를 곱하게 된다. 이것을 chipping 이라 하며, 이렇게 곱해진 신호를 받아, 송신측에서는 수신쪽에서는 이 확산신호에 다시 송신쪽에서 사용한 동일한 확산 코드를 곱해주면, 원래 송신하고자 했던 데이타와 동일한 수신 데
|
- 페이지 7페이지
- 가격 1,800원
- 등록일 2014.01.16
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
control은 대체로 자바 애플릿과 동등한 위치에 있다고 할 수 있다.
윈도우 운영체계가 설치된 PC에서 파일의 확장자에 "OCX"라고 붙은 많은 파일들이 발견되는데, OCX란 "Object Linking and Embedding control"의 약자이다. 개체연결 및 삽입 (OLE ; Object Linkin
|
- 페이지 6페이지
- 가격 1,300원
- 등록일 2007.08.06
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
typedef int element;
typedef struct ListNode {
element data;
struct ListNode *link;
} ListNode;
void error(char *message)
{
fprintf(stderr, "%s\n", message);
exit(1);
}
void insert_node(ListNode **phead, ListNode *p, ListNode *
|
- 페이지 33페이지
- 가격 3,000원
- 등록일 2010.05.26
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
5. 디지털 도서관에 있어서의 DOI기술의 활용
5-1.영속적 링크의 제공
5-2.저작권 보호
5-3.MARC DATA의 대응
5-4.전거파일로서의 가능성
5-5.Reference Linking
Ⅲ. 결 론
1. DOI기술의 한계점
2. DOI기술을 활용한 디지털 도서관 구축
참고문헌
|
- 페이지 15페이지
- 가격 2,000원
- 등록일 2006.02.04
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
LINKLIST *top;
{
STRUCT LINKLIST *temp = malloc(sizeof(STRUCT LINKLIST));
if(IS_FULL(temp) )
{
memory_overflow();
return;
}
temp -> data = x;
temp->LINK =top;
top = temp;
}
스택의 삭제
int pop( top)
STRUCT LINKLIST *top;
{
int x;
pointer temp;
temp = top;
if(IS_EMPTY(temp))
{
stack_empty();
r
|
- 페이지 4페이지
- 가격 800원
- 등록일 2005.05.01
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
lass Queue;//전방선언
class QueueNode{
friend class Queue;
private:
int data;
QueueNode *link;
QueueNode(int d = 0, QueueNode *l = 0) : data(d), link(l) {};
};
class Queue{
public:
Queue(){first = 0; last = 0;}
void Add(const int);
|
- 페이지 10페이지
- 가격 1,000원
- 등록일 2005.09.29
- 파일종류 압축파일
- 참고문헌 없음
- 최근 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 <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
int postfix_char();
int Isp(char x);
int Icp(char x);
int count;
char input[50], comparison, comparison_1;
typedef struct node
{
char data;
struct node *link;
}linked_node;
|
- 페이지 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주 판매 이력 없음
|
|
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주 판매 이력 없음
|