• 통합검색
  • 대학레포트
  • 논문
  • 기업신용보고서
  • 취업자료
  • 파워포인트배경
  • 서식

전문지식 193건

in Inter-Organizational Systems", MIS Quarterly, 1996, p279-300 설 문 지 조직간 정보 시스템(Interorganization Information System - IOS)의 사용 패턴과 기술구조의 관련성에 관한 설문지 안녕하십니까! 저는 대학원 경영학과에서 인사/조직/전략을 전공하고 있는 학
  • 페이지 16페이지
  • 가격 3,000원
  • 등록일 2004.01.12
  • 파일종류 한글(hwp)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
공들여서 했습니다. 잘 쓰셔서 도움되셨으면 좋겠습니다! *특이사항으로 전문 영문입니다! 1. Introduction (2. Vector) 3. Force 4. Systems of Forces and Moments 5. Objects in Equilibrium 6. Structures in Equilibrium 7. Centroids and Center of Mass 8. Moments of Inertia
  • 페이지 57페이지
  • 가격 2,500원
  • 등록일 2024.07.08
  • 파일종류 아크로벳(pdf)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
1. 개발한 프로그램의 설명 및 목표 1.1 개발 프로그램. – 오목 - 이번 컴퓨터 공학 실습 1의 term project를 위해 우리가 개발한 프로그램은 많은 사람들이 바둑 혹은 장기와 더불어서 가장 보편적으로 즐겨하는 오목 게임 프로그램이다. 1.
  • 페이지 11페이지
  • 가격 4,000원
  • 등록일 2012.02.07
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
8. 연결 리스트를 왼쪽에서 오른쪽으로 순회해 나가는 동안 링크를 반대로 만들어 양 방향으로 이 리스트를 순회해 나가는 것이 가능하다 (즉, 왼쪽에서 오른쪽으로, 그리고 제한적으로 오른쪽에서 왼쪽으로). 리스트 ptr을 이런 방식으로
  • 페이지 5페이지
  • 가격 2,000원
  • 등록일 2007.06.05
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include<stdio.h> #include<stdlib.h> typedef struct tree_node *tree_pointer; typedef struct tree_node { int Key; tree_pointer left; tree_pointer right; }tree_node; void insertToBT(tree_pointer *ptr, int num) ; tree_pointer binary_search(tree_pointer ptr, int key); void inOrderT
  • 페이지 50페이지
  • 가격 3,000원
  • 등록일 2010.05.26
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include<stdio.h> void MoveDisk(int,char,char,char); int main(void){ int n; printf("Input Disk Number >> "); scanf("%d",&n); // MoveDisk로 n값과 x,y,z 문자를 넘긴다. MoveDisk(n,'x','y','z'); return 0; } 4주 - Recursion
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include "stack.h" #define MAX_SEQ_SIZE 24 // eqRelation에 대한 구조체 정의 typedef struct _EqRelation { int out[MAX_SEQ_SIZE]; listPointer seq[MAX_SEQ_SIZE]; int seqSize; }EqRelation; // malloc을 사용하여 heap영역에 메모리를 할당시 heap영역이 남아 있는지 검사 i
  • 페이지 4페이지
  • 가격 1,000원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
// Maze #include<stdio.h> #define MAX_ROW 20 #define MAX_COL 20 #define MAX_STACK_SIZE (MAX_ROW*MAX_COL) #define FALSE 0 // FALSE의 초기화 #define TRUE 1 // TRUE의 초기화 #define Empty -1 #define North 0 #define East 2 typedef struct{ int eRow; int eCol; int eDir; }eleme
  • 페이지 5페이지
  • 가격 1,000원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include <iostream> #include <iomanip> #define MAX_SIZE 100// Array의최대크기 using namespace std; //DisjointSets의클래스 class DisjointSets { private: int Parent[MAX_SIZE];// DisjointSets을표현할Array int Size; // Array size : Array의size를입력받는다. public: Disjoi
  • 페이지 50페이지
  • 가격 3,000원
  • 등록일 2010.05.26
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <string.h> #define MAX_STACK_SIZE 100 // stack의최대크기 #define MAX_EXPR_SIZE 100 // 수식의최대크기 /* 사용될operation */ typedef enum { lparen, rparen, uplus, uminus, power, times, divide, mod, plus, minus, eos, operand }precedence; /* Token(연
  • 페이지 5페이지
  • 가격 1,500원
  • 등록일 2010.05.28
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
top