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

전문지식 40건

1. The Beginning 이번 숙제에서 구현해야 하는 bubble sort, binary search에 대해서 먼저 C 코드로 작성한 후 그를 바탕으로 MIPS 어셈블리 코드를 만들었습니다. 처음에는 gcc –S 로 80x86용 어셈블리 코드를 만들고 그를 MIPS 어셈블리 코드로 변환해 보
  • 페이지 9페이지
  • 가격 2,000원
  • 등록일 2006.06.29
  • 파일종류 압축파일
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
assemblers use "credible commitments" such as financial assistance, technological assistance, and managerial assistance. The coefficient of specific human capital is positive and significant. This suggests that assemblers search for another means to control the problems of opportunism in the case of
  • 페이지 124페이지
  • 가격 3,300원
  • 등록일 2001.07.21
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 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> #include <stdlib.h> #include <time.h> #define TRUE 1 #define FALSE 0 typedef struct BST {     int data;     struct BST *left;     struct BST *right; } BST; BST *make_node(); BST *init_BST(int); int insert_BST(BST *, int); int search
  • 페이지 1페이지
  • 가격 1,300원
  • 등록일 2012.11.13
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
; } else if (array[middle]> value) last = middle -1; else first = middle +1; } return position; } 
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2009.03.02
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
top