• 통큰쿠폰이벤트-통합
  • 통합검색(2,052)
  • 리포트(1,829)
  • 시험자료(99)
  • 자기소개서(51)
  • 논문(36)
  • 방송통신대(21)
  • 이력서(9)
  • ppt테마(5)
  • 서식(2)

"data structure" 검색결과 381-400 / 2,052건

  • 재료기술 분야의 연구 협력 네트워크 구조 및 변화 : 우리나라 공동특허를 중심으로
    기술경영경제학회 한경진, 조근태
    논문 | 39페이지 | 8,900원 | 등록일 2024.01.01
  • 다문화 가족 관련 정책과 개선 방안 - 관련 법령을 중심으로 -
    Therefore, this article inquired into the structure and the view through the supporting the law and policy ... This study establishes an effective multicultural youth policies and provide basic data in performing ... the study's significance.
    논문 | 23페이지 | 6,000원 | 등록일 2024.05.16 | 수정일 2024.09.14
  • Data Structures HW5
    Heap is a data structure which is made to find the maximum or minimum value node over nodes. ... #reference-Data structures and Algorithm Analysis In C (second edition) , Mark Allen Weiss(5) Your code ... In data structure, the running time is most important in making a code, So I think the heapsort is more
    리포트 | 5페이지 | 2,000원 | 등록일 2012.12.01
  • 03.배열
    a = ‘A’;char *p;p = &a;포인터 p 앞에 쓰는 데이터 타입은 p의 데이터 형식이 아니라 p라는 포인터 변수가 가리키는 데이터 타입이 char 이라는 뜻이다. ... 배열(Array): 배열은 여러 개의 동일한 데이터 타입의 데이터를 한번에 만들 때 사용된다.만약 배열을 사용하지 않고 여러 정수를 저장하기 위해서는 저장하려는 정수의 개수만큼의 변수를 ... struct test { int field1; };void sub(struct test b){ b.field1 = 1;}void main(){ struct test a={ 0 };
    리포트 | 9페이지 | 1,000원 | 등록일 2018.05.02
  • 대학원 영어 논문 리뷰
    expected four-factor structure4. ... Data Analysis: CFA, internal reliability coefficients(Cronbach’s a), criterion validity(concurrent validity ... structure, 7-item per subscale= Primary irrational belief, low frustration tolerance, awfulizing, depreciation
    논문 | 4페이지 | 3,000원 | 등록일 2023.08.14
  • Combined Reflection and Refraction Processing of Dense, Wide-Aperture Data of EAGE Middle East Bootcamp 2015 (Al Ain, UAE) JinYeob Na Master of Science June 2018 A thesis
    Al Jaww plain, which is included in the UAE basin, is also characterized by a complex geological structure ... Refraction staticsFirst break data is used to calculate the refraction statics. ... Processing flowEnhancing the seismic data reliability is the primary aims of processing is a method of
    논문 | 109페이지 | 3,000원 | 등록일 2020.11.11 | 수정일 2020.11.14
  • phylogenetic tree 생물 진화의 과정
    between a pair of structures. ... data and morphological data matrices. ... In this case, the existence of shared structures called homology.
    논문 | 4페이지 | 3,000원 | 등록일 2021.08.03
  • 부산 연안도시 관광수요 예측과 영향요인에 관한 연구
    analysis of tourism scale using agent-based data. ... structure have led to an increase in the demand for tourism and an expansion of the diversification ... 연구 대상은 부산 지역 내 기초자치단체이며, 데이터는 월단위의 관광객수와 관광소비금액을 활용하였다.
    논문 | 15페이지 | 4,800원 | 등록일 2024.02.12 | 수정일 2024.09.14
  • [영문에세이/essay] 경영전략/ OCBC(Oversea-Chinese Banking Corporation) 은행 관련 논문 과제물입니다.
    as electronics, chemicals, and biomedicine.The services sector also demonstrates Singapore's well-structured ... a Hackathon to ensure that customer data is secureFrontline staff to learn how to use customer-facing ... " https://www.straitstimes.com/business/banking/singapore-bank-loans-to-grow-sluggish-05-in-2019-amid-rising-trade-tensions-slowing
    논문 | 27페이지 | 5,000원 | 등록일 2022.02.03 | 수정일 2022.02.09
  • 02.순환
    다음 함수를 sum(5)로 호출하였을 때, 화면에 출력되는 내용과 함수의 반환 값을 구하라.함수의 반환 값 = 1610.
    리포트 | 4페이지 | 1,000원 | 등록일 2018.05.02
  • 06.큐
    rear가 가리키는 자리에는 데이터가 존재하고, front가 가리키는 자리에는 데이터가 존재하지 않으므로 현재 원형 큐에는 5 - 3 = 2 즉, 2개의 요소가 저장되어있다.6. ... }}void main(){QueueType q;init(&q);printf("init front = %d rear = %d\n", q.front, q.rear);//initail data ... 큐는 선입선출 방식으로 실행되기 때문에 가장 먼저 들어온 10, 20, 30의 데이터가 삭제된다. 따라서 남아있는 항목은 40과 50이다.4.
    리포트 | 12페이지 | 1,000원 | 등록일 2018.05.02
  • 07.트리
    #define TRUE 1#define FALSE 0typedef struct TreeNode{int data;struct TreeNode *left, *right;}TreeNode ... = NULL){node->data++;add1(node->left);add1(node->right);}else return;}프로그래밍#include #define TRUE 1#define ... FALSE 0typedef struct TreeNode{int data;struct TreeNode *left, *right;}TreeNode;// 5// 3 7// 1 2 6 9TreeNode
    리포트 | 10페이지 | 1,000원 | 등록일 2018.05.02
  • 05.스택
    #include #include #include #include typedef int element;typedef struct DlistNode{element data;struct ... UNDO 기능을 구현하기 위하여 실행된 명령어들을 기억할 때: 스택은 가장 최근에 들어온 데이터가 먼저 나가는 후입선출 방식의 구조이다. ... (DlistNode));p[i]->data = i;dinsert_node(&head_node, p[i]);}dremove_node(&head_node);d;}}
    리포트 | 8페이지 | 1,000원 | 등록일 2018.05.02
  • 언어와과학(Grammar as Science) Part4 Exercise
    in Units 11 and 12, separating characterization of the structures, data and data summary, principle, ... 하지만 structure (2a)는 그렇지 않다.2. ... (2a)Argument1. structure (2b)는 A와 PP가 A’이라는 하나의 constituency로 묶여져 있다.
    리포트 | 5페이지 | 2,000원 | 등록일 2019.06.11
  • 자료구조 중간 요약
    = j;swap(w_data[i], w_data[min]);}return;}sequential mapping(리스트 배열에 넣는 것)장점 : Access Time 빨라짐단점 : 비효율적n ... 객체의 자세한 실행을 숨기는 것알고리즘어떤 특정한 작업을 해내기 위한 정형화된 구조인풋, 아웃풋, 정의,선택정렬void selection_sort(int *w_data, const ... 데이터의 조합과 절차적 구성요소로 구성되어 독립된 상태로 연산을 수행하는 독립개체데이터타입과 추상데이터타입데이터 타입 : 객체의 연산 방법을 나타냄ADT : 객체의 정의와 연산의 실행을
    시험자료 | 2페이지 | 1,500원 | 등록일 2016.12.04
  • 정보시스템 uml,컴퓨터,프로젝트,지하철시스템개선,프로그램
    몇 가지 예를 들어 데이터 구조(data structure)를 조직화 시킨 표이다.1) Electric rail car 상세테이블 설계(Electric rail car)AttributeData ... 프로세스 모델링126.1 DFD & Level-0 diagram126.2 Level-0 각 Data flow, Data store에 대한 data type 정의137. ... (Data store in Level-0) Data type 정의(Schedule Data)AttributeData TypeDomainDescriptionDepartureTimeHHMM열차
    리포트 | 22페이지 | 2,500원 | 등록일 2014.11.20
  • [A+ 연세대][2019 1학기 진행] 미생물및생물공학기초실험 Lab 10: Quantitative Structure Activity Relationship 결과레포트
    to their secondary structures. ... Another example would be for structure prediction where accuracy of protein structure prediction has ... Overfitting simply said is a model that models the training data too well.
    리포트 | 3페이지 | 3,000원 | 등록일 2019.08.26
  • PPT 템플릿
    Research market data for your employees’ jobs. Create a pay structure to ensure internal equity. ... Define your compensation strategy. Develop a market-based pay structure. Build pay ranges. ... empowering managers to fix problems Not being transparent Giving across-the-board raises Not having a structured
    ppt테마 | 36페이지 | 1,500원 | 등록일 2017.12.07
  • 10.그래프
    각 정점의 데이터를 1, 2, 3이라고 하였을 때 정점이 3개, 간선이 n-1개로 2개인 신장 트리는 1과2, 2와3, 1과3을 잇는 트리로 총 3개가 가능하다.8. ... #include #define TRUE 1#define FALSE 0#define MAX_VERTICES 50//인접 행렬 그래프 구현typedef struct GraphType{ ... i < n; i++){distance[i] = weight[start][i];found[i] = FALSE;}found[start] = TRUE;distance[start] = 0;
    리포트 | 16페이지 | 1,000원 | 등록일 2018.05.02
  • 약학 대학 모의 면접 문항
    They differ in their size, sequence, structure, and the ratio of protein to RNA. ... The differences in structure allow some antibiotics to kill bacteria by inhibiting their ribosomes, while ... 그 후,{} ^{14} rmC를 포함한 정상 배지로 옮겨 다시 3세대 동안 배양하여 밀도차 원심분리를 수행하여 리보솜 데이터(2)를 얻었다.(1) (2)[3].
    자기소개서 | 2페이지 | 3,000원 | 등록일 2018.07.06
  • 아이템매니아 이벤트
  • 유니스터디 이벤트
AI 챗봇
2024년 09월 14일 토요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
8:29 오후
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
9월 1일에 베타기간 중 사용 가능한 무료 코인 10개를 지급해 드립니다. 지금 바로 체험해 보세요.
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감
방송통신대학 관련 적절한 예)
- 국내의 사물인터넷 상용화 사례를 찾아보고, 앞으로 기업에 사물인터넷이 어떤 영향을 미칠지 기술하시오
5글자 이하 주제 부적절한 예)
- 정형외과, 아동학대