• AI글쓰기 2.1 업데이트
  • AI글쓰기 2.1 업데이트
  • AI글쓰기 2.1 업데이트
  • AI글쓰기 2.1 업데이트
  • 통합검색(2,219)
  • 리포트(1,862)
  • 논문(155)
  • 시험자료(104)
  • 자기소개서(55)
  • 방송통신대(25)
  • 이력서(9)
  • ppt테마(6)
  • 서식(2)
  • 노하우(1)
판매자 표지는 다운로드시 포함되지 않습니다.

"data structure" 검색결과 501-520 / 2,219건

  • 소프트웨어공학 프로젝트 최종 레포트 예시(Software Engineering, SE)
    used to understand when constructing or designing the overall structure of a system. It is mainly s ... refactoring the structure itself is very expensive, so it is important to structure it well from the ... we data is shown to the user.4.3.2 Layered architectureIn utility service layer, we use many
    리포트 | 19페이지 | 1,500원 | 등록일 2020.07.08 | 수정일 2020.09.01
  • research and desicion making for business ) Impact expatriates have on the autonomy of foreign companies in Singapore 할인자료
    word ‘sharing’ into economy2.2 Critique2.3. Market structure of the new economy: how to connect ... that those studies only focus on empirical studies based on survey data, it is possible that there ... is an error analyzing those dataset. It is plausible that the data was extracted from biased groups s
    리포트 | 8페이지 | 3,000원 (20%↓) 2400원 | 등록일 2019.06.07 | 수정일 2019.06.14
  • 판매자 표지 자료 표지
    포항공대 화학생명공학실험[포스텍 A]Pre-Report (Sequencing Analysis of Target DNA)
    자들이 이용하는 서비스이다. Entrez 는 최신 데이터 베이스를 검색할 수 있는 검색 시스템으로, DNA, 단백질, GENOME MAPPING, population set ... , protein structure, literature search 가 가능하다.BLASTBLAST는 세계에서 가장 널리 쓰이는 sequence 검색 프로그램이다. 수많은 단백질, dna ... 주로 사용한다. 알고리즘의 원리는 간단하다. 기존의 데이터베이스 정보와 미지의 sequence를 연산이 빠른 컴퓨터가 인간 대신 비교해 주는 것이다. 유사한 서열을 찾는 과정
    리포트 | 7페이지 | 2,000원 | 등록일 2020.06.06 | 수정일 2020.06.12
  • 연세대학교 전기전자공학부 20-1학기 기초디지털실험 week 6 보고서
    tructure than a text-LCD. We first look at the principle and the structure of a TFT-LCD. The concepts ... boardFigure 4. shows the overall structure of a TFT-LCD consisting of the TFT-LCD controller, the ... 4. structure diagram of TFT-LCD2.4. TFT-LCD Timing SignalsThe TFT-LCD synchro signal process can be
    리포트 | 18페이지 | 3,000원 | 등록일 2020.08.18
  • 08.우선순위큐
    , O(log n)이 된다.8. 다음 중 히프 정렬이 특히 유용하게 사용될 수 있는 경우는?데이터 100개 중에서 오름차순으로 20개만 뽑고자 할 때: 히프를 이용하면 일반적으로 정렬 ... 아니면 최소 히프인가?: 부모 노드의 값이 자식의 노드 값보다 작기 때문에 최소 히프라고 할 수 있다.인덱스0123456데이터02568910위의 히프에 해당하는 히프 트리를 그려라 ... .2/ \5 6/ \ /8 9 10이 히프에서 한 번의 삭제 연산을 수행한 다음의 배열의 내용을 쓰라.5/ \8 6/ \10 9데이터 7을 삽입한 다음의 배열의 내용을 쓰라.5
    리포트 | 13페이지 | 1,000원 | 등록일 2018.05.02
  • 프로그래밍1장
    프로그램 코드#include void main(void){int num[32] = { 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27 ... ; i < 32; i++){if (tmp < num[i])tmp = num[i];}printf("데이터\n");for (i = 0; i < 32; i++)printf("%d
    리포트 | 2페이지 | 1,000원 | 등록일 2018.05.02
  • 프로그래밍4장
    ;typedef struct ListNode {element data;struct ListNode *link;} ListNode;/* Node 는 데이터필드와 링크필드로 구성되기 때문에 구조 ... 서 노드의 데이터와 비교하는 명령을 수행한다. 마찬가지로 while문을 사용하여 p가 NULL이 아닌 동안 만약 p->data가 x이면 탐색을 성공한 것이므로 p값을 반환하고 p ... 의 데이터 필드는 data를 받고 new_node의 링크 필드는 link를 받는다. 그리고 new_node 값을 반환한다. */main(){ListNode *list1 = NULL
    리포트 | 9페이지 | 1,000원 | 등록일 2018.05.02
  • 01.자료구조와 알고리즘
    2. Set(집합) 추상 데이터타입을 정의하라. 다음과 같은 연산자들을 포함시켜라.ADT set객체 정의 : 집합은 서로 구분되는 원소(element)들의 순서 없는 무리이 ... 다.연산 정의 :Create() /집합을 생성하여 반환한다.Insert(S, e) /원소 e를 집합 S에 저장한다.Remove(S, e) /원소 e를 집합 S에서 제거한다.Is_In(S ... , e) /집합 S에 원소 e가 있는지 검사한다.Union(S1, S2) /S1과 S2의 합집합을 구한다. → S3 = S1 ∪ S2Intersection(S1, S2) /S1
    리포트 | 3페이지 | 1,000원 | 등록일 2018.05.02
  • 미로탐색
    을 나타내는 좌표 값으로 x와 y 항목을 넣는다. 데이터 타입은 short로 한다. */typedef struct {element stack[MAX_STACK_SIZE];int top ... 미로 탐색 프로그램//maze.c#include #include #define MAX_STACK_SIZE 1000#define MAZE_SIZE 6/*스택과 미로의 크기를 각각 ... 1000, 6으로 정의한다. */typedef struct {short x;short y;} element;/*elemet를 구조체로 정의한다. 구조체의 내용에 미로의 방향
    리포트 | 4페이지 | 1,000원 | 등록일 2018.05.02
  • 허프만 코드
    HUFFMAN CODES PROGRAMING#include #include #define MAX_ELEMENT 100typedef struct TreeNode{int weight ... ;struct TreeNode *left_child;struct TreeNode *right_child;}TreeNode;typedef struct{TreeNode *ptree ... ;int key;}element;typedef struct {element heap[MAX_ELEMENT];int heap_size;}HeapType;init(HeapType *h
    리포트 | 3페이지 | 1,000원 | 등록일 2018.05.02
  • Discussion 분석 영어논문 및 저널 작성법 Key 논문 분석 과제
    Properties123중Thermal, structural and rheological behaviour of native and modified waxy corn starch with ... Effect of single and dual hydrothermal treatments on the crystalline structure, thermal properties, and ... tructural properties of cassava starch granules modified with hydrochloric acid at different temperatures
    리포트 | 20페이지 | 3,000원 | 등록일 2020.03.16 | 수정일 2024.06.03
  • H&E staining, IHC 조직염색
    과 eosin의 염색 조합이다. hematoxylin은 logwood tree의 심재에서 추출한 화합물로 acidic structures나 basophilic structures ... 가 아니기 때문에 hematoxylin 염색 후 다른 acidic dye 염색이 가능하다는 장점이 있다. Eosin은 acidic dye이고 basic structures ... 나 acidophilic structures를 빨간색 또는 분홍색으로 염색한다. cytoplasm에 존재하는 대부분의 proteins는 basic하기 때문에 cytoplasm의 경우는 분홍색
    리포트 | 7페이지 | 2,000원 | 등록일 2020.07.03 | 수정일 2020.11.11
  • 프로그래밍2장
    1.Factorial(팩토리얼)반복문 : 프로그램 코드 / 실행 결과 화면#include int factorial(int num){{if (num == 0 ... )return 1;}int result = 1;for (int i = num; i > 0; i--){result *= i;}return result;}int main(){int n;sc ... : 프로그램 코드 / 실행 결과 화면#include int factorial(int n){if (n
    리포트 | 7페이지 | 1,000원 | 등록일 2018.05.02
  • 강구조 문제풀이 ppt
    ontent 1. Introduction 1.1. Problem 12.2. analysis 2. Steel structural design standards 2.1. Loads 2 ... .2. The given section data 2.3. Allowable stress 2.4. Actual stress 2.5. Combined stress 3. Highway ... bridge design standards 3.1. Loads 3.2. The given section data 3.3. Allowable stress 3.4. Actual s
    리포트 | 21페이지 | 1,000원 | 등록일 2019.05.16
  • What country do you want to live in
    care system is well estalished. According to the world’s largest user-contributed data website ... ontemporary masterpieces. For example, Schonbrunn Palace and St. Stephen's Cathedral are majestic structures ... world's highest quality of life in 2019. Therefore, there are three specific reasons why I want to
    리포트 | 1페이지 | 1,000원 | 등록일 2020.06.15
  • 스마트도시 정책 및 사례정리
    tructured) 고정된 필드에 저정되어 있는 데이터 스프레드시트 반정형 (semi-structured) 비정형 (unstructured) 고정된 필드에 저장되어 있지는 않 ... 모델물인터넷과 빅데이터 3 스마트시티의 구현 ■ 스마트정부 도시전반적 데이터 제공 INTO.HKKIM단일 개체 집합과 구분 단일 개체 집합과 구분 단일 개체 집합과 구분 정형 (s ... , 기상데이터 등 ( 이용자 다수 , 업데이트 빈번한 대용량 데이터 ) LOD (Linked Open Data 인터넷 상의 각 사이트에서 RDF(Resource Description
    리포트 | 63페이지 | 5,000원 | 등록일 2020.05.14
  • eGov_management_forthe future
    the citizen Integrating structures and building delivery networks - Engaging citizens as partners ... ificant structural shifts necessary. Realizing the vision of public service for the future depends on ... tightly interweaving the four structural shifts we have set forth here 1) from standardized to
    리포트 | 20페이지 | 1,000원 | 등록일 2020.04.19
  • ERP 게임을 통한 시뮬레이션 A+
    or view data in the system, he or she performs a transaction= Data changed or created by one user c ... 조직 구조)= The most common organizational structure of a company you are likely to encounter isthe ... functional structure.= Organizations that utilize a functional structure are divided into functions
    리포트 | 17페이지 | 3,500원 | 등록일 2019.12.17 | 수정일 2020.06.03
  • 연세대학교 전기전자공학부 19-2학기 네트워크실험 10주차 결과 보고서
    ReceiveMsg를 ResetCounterMsg로 선언}}implementation{ struct BasicMAC_Msg *pack; //BasicMAC_Msg structure ... 을 call하여 packet 송신dbg(DBG_USR1, "DATA send SUCCESS!!!!!\n");}return SUCCESS; //SUCCESS를 반환}event TOS ... is received\n");atomic {pack_received = (struct BasicMAC_Msg *)m->data; //pack에 msg의 data를 할당pack
    리포트 | 10페이지 | 2,000원 | 등록일 2020.08.18
  • Data Structures HW6
    #reference-Data structures and Algorithm Analysis In C (second edition) , Mark Allen Weiss(5) Your c ... Data Structures과제명: HW6 (The cost of building Roads)제출일: ~5.30(Mon)학번: 2007142082이름: Hong SungHyun ... (1) Brief explanation of the problemThe goal of this problem is that we should make a code by using
    리포트 | 8페이지 | 2,000원 | 등록일 2012.12.01
  • EasyAI 무료체험
해캠 AI 챗봇과 대화하기
챗봇으로 간편하게 상담해보세요.
2025년 10월 09일 목요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
6:15 오전
문서 초안을 생성해주는 EasyAI
안녕하세요 해피캠퍼스의 20년의 운영 노하우를 이용하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 AI가 방대한 정보를 재가공하여, 최적의 목차와 내용을 자동으로 만들어 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
- 스토어에서 무료 이용권를 계정별로 1회 발급 받을 수 있습니다. 지금 바로 체험해 보세요!
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감