|
구조정책관련자료집』. 산업연구원.
이종윤. 1989. 산업구조의 고도화와 산업정책의 전개. 박우희 . 정영일 편. Ⅰ. 서 언
Ⅱ. 산업정책의 의의
1. 산업정책의 개념
2. 산업정책의 유형
1). 정부 개입형
2). 시장 의존형
3).합의
|
- 페이지 11페이지
- 가격 2,000원
- 등록일 2003.11.04
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
< 큐를 구현한 연결리스트 표현 >
[ 결과 ] 큐를 구현한 연결리스트 소스
|
- 페이지 4페이지
- 가격 1,200원
- 등록일 2009.05.22
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
)
④ p와 q포인터 중 큰 지수가 있는 항을 c로 복사
⑤ c에 남아있는 있는 값을 복사, p와 q포인터가 null이면 처리 끝 지수와 계수를 모두 저장하기 위해 1차원 배열을 두개 만들어 구조체로 만들고 계수와 지수를 저장하는 방법으로 구현
|
- 페이지 1페이지
- 가격 700원
- 등록일 2007.05.10
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
//////////////////////////////////////////////////////////////////
//Defination
//////////////////////////////////////////////////////////////////
#define STACK_SIZE 100
#define MAX_SIZE
|
- 페이지 10페이지
- 가격 1,300원
- 등록일 2006.06.13
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#define LOOP 10
#define MAX 1000
int list[MAX], sorted[MAX];
int count;
void merge_sort(int list[], int n);
void merge_pass(int list[], int sorted[], int n, int s);
void merge(int list[
|
- 페이지 1페이지
- 가격 800원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define LOOP 10
#define MAX 1000
int data[MAX];
int e, n, count, index;
int selection_sort(int data[], int n);
int bin_srch(int data[], int k);
int inter_srch(int data[], int k);
void main() {
int i
|
- 페이지 1페이지
- 가격 800원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
#define LOOP 10
#define MAX 1000
int list1[MAX], list2[MAX];
int n, count, left, right;
int selection_sort(int list1[], int n);
void quicksort(int list2[], int left, int right);
void
|
- 페이지 1페이지
- 가격 800원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#define LOOP 10
#define MAX 1000
typedef struct{
int key;
int link;
}element;
element list[MAX];
int count;
int rmerge(element list[], int lower, int upper);
int listmerge(element list[], int
|
- 페이지 1페이지
- 가격 800원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
#define MAX_SIZE 100
#define pi 3.1415926535
#define SIN(INPUT) sin((INPUT/180)*pi)
#define COS(INPUT) cos((INPUT/180)*pi)
#define TAN(INPUT) tan((INPUT/180)*pi)
typedef enum{
lp
|
- 페이지 1페이지
- 가격 2,300원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
/*******************************************************
File : 성적처리.c
Author : dongq
Date : 07/13/03
This program was designed primarily to illustrate
the following:
- Bubble sorting에 의한 정렬
- file I/O
- 구조체의 사용
********************************************************/
|
- 페이지 4페이지
- 가격 1,000원
- 등록일 2003.09.29
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|