• 전문가 요청 쿠폰 이벤트
  • 통합검색(78)
  • 리포트(70)
  • 시험자료(6)
  • 자기소개서(1)
  • 방송통신대(1)
판매자 표지는 다운로드시 포함되지 않습니다.

"stack&queue" 검색결과 21-40 / 78건

  • 데이터 구조 숙제, 시스템 스택, linear list
    1. Using the binary search function, show the status of the system stack diagram such as below the ... linear list circularly in an array, circle[MAX_SIZE]. We set up front and rear indices similar to those ... used for a circular queue.(a) Obtain a formula in terms of front, rear, and MAX_SIZE for the number
    Non-Ai HUMAN
    | 리포트 | 3,000원 | 등록일 2017.10.13 | 수정일 2017.10.16
  • 판매자 표지 자료 표지
    자료구조 텀프로젝트 BST (binary search tree) Inventory (재고 관리 시스템)
    101001 14R 123456 14A 115510 3A 112456 2D 122222N 110011 Stack stack 1 2N 110011 Stack stack 5 2N ... 주제BST (binary search tree); Inventory(재고 관리 시스템)문제: 재고(stock) 목록 시스템을 개발한다. 이 프로그램은 재고관리 시스템에 새로운 컨 ... *************9012345678901234567890123456789012345678901234N 101001 Circular Queue 11 1N 123456 List
    Non-Ai HUMAN
    | 리포트 | 12페이지 | 2,000원 | 등록일 2018.10.28 | 수정일 2021.06.29
  • OS Message Passing 과제
    (*taskinfo));memset(taskinfo, 0x00, sizeof(*taskinfo));{struct frame *f = (struct frame *) &taskinfo->stack ... (TaskInfo taskinfo) {//level 0에서 처음 작업을 수행할 경우 0번 queue에 작업을 저장한다.if (level == 0 && gh_sch.root_task ... [THREAD_STACKSIZE- sizeof(struct frame) / 4];// taskinfo로 할당된 공간 중 stack 부분 뒤쪽에 frame을 위한 공간으로 할당// 이
    Non-Ai HUMAN
    | 리포트 | 10페이지 | 2,000원 | 등록일 2016.03.26
  • [2014년] C++ 자료구조 3주차 연습문제
    리스트public: 공용합수로 선언stack (int hanbatStack=5);↑hanbaStack인 스택 생성bool IsEmpty() const;↑스택의 원소수가 0인지 확인T ... "; ↑스택의 empty이면 에러 메시지 출력Top=Top-1; 비어있지 않으면 top-1을 top에 대입stack[top--].~T(); T 삭제5. queue의 정의를 쓰 ... 한 변수이다.2. stack의 정의를 쓰고, stack의 추상 데이터타입을 정의하시오.스택이란 후입선출(LIFO)리스트라 가장 상위 것만 접근이 가능한 제한적 접근 나열 구조이다. 톱이
    Non-Ai HUMAN
    | 리포트 | 3페이지 | 1,000원 | 등록일 2014.05.24
  • [지식경영]과제
    .println();System.out.print("Enter start and goal city separated by blank: ");line = scanner.nextLine ... ( );tokens = line.split(" ");while(!(tokens.length == 2 &&nodes.contains(tokens[0]) && nodes.contains ... (tokens[1]))) {System.out.print("Enter start and goal city separated by blank: ");line = scanner
    Non-Ai HUMAN
    | 리포트 | 14페이지 | 3,500원 | 등록일 2016.04.16 | 수정일 2016.04.18
  • [자료구조론] - C언어 Stack, Queue, Circular Queue, Maze, Postfix
    대로 가장 먼저 입력된 값이 먼저 출력된다. stack을 구성한 code와 마찬가지로 pop하는 합수와 push하는 함수를 사용하였다. queue에 값을 입력하면 그 값 ... ;stack[0]=eosfor(token=getToken(&symbol,&n,expr); token != endtoken = getToken(&symbol,&n,expr)) {if ... apacity=MAXvoid stackfull(char* stack, int capacity);void push(char *stack){if(topc:\visual studio
    Non-Ai HUMAN
    | 리포트 | 21페이지 | 1,000원 | 등록일 2014.05.06
  • 프로그래밍언어
    is a first-in first-out list. Variations are Deque and Priority queue.A set can store certain values ... , without any particular order, and with no repeated values.A stack is a last-in, first out data s ... "hte values), or as a linked list (a set of non-contiguous memory blocks linked by pointers).A queue
    Non-Ai HUMAN
    | 리포트 | 8페이지 | 1,000원 | 등록일 2017.10.05 | 수정일 2022.11.07
  • 오에스 Operating System Concept Ch2
    함. CPU 이용을 최대치로 끌어올리기 위함.- Accounting : 유저가 어떤일을해서 컴퓨터 리소스가 어떻게 쓰이는지 꾸준히 추적.- Protection and security ... ‘을 레지스터에 넣어놓는다.3) 프로그램에 의해 stack에 파라미터들을 push하고 OS에 의해 pop하는 방법이 있다.2.3 Describe how you could obtain a s ... advantages and disadvantages of using the same system call interface for manipulating both files and
    Non-Ai HUMAN
    | 리포트 | 2페이지 | 1,000원 | 등록일 2016.04.12
  • C로 작성한 계산기 프로그램
    _queue(ist);ist = pop_token_stack();}}/* 연산자 우선순위 비교 */else{ist = pop_token_stack();while(isp[ist.token ... _id] >= icp[ict.token_id]){push_token_queue(ist);ist=pop_token_stack();}push_token_stack(ist ... );/*unstacking */push_token_stack(ict);}//단항 연산자 처리if(previous_token_type== unary){ict = pop_token_queue
    Non-Ai HUMAN
    | 리포트 | 16페이지 | 1,000원 | 등록일 2013.05.19
  • 성균관대 C프로그래밍-Stack&Que
    . # 6 : Stacks and Queues**This is the main program provided to students who registered*in ... "Programming Lab" at School of Information and Communication,*Sungkyunkwan University.*/#include #include ... ] Pushing items into a stack*/printf("\nPushing data into a stack\n");for(i = 0 ; i < MAX_NUM ; i+
    Non-Ai HUMAN
    | 리포트 | 21페이지 | 1,500원 | 등록일 2014.04.23
  • 자료 구조(후위 표기법 수식을 입력 받아 수식 나무를 구성하고, 이를 중위 표기법으로 출력)
    main(){char post[256];init_stack();init_queue();init_tree();while(1){printf("\n\n Input a postfix ... The infix expression :");inorder_traverse(head -> right);}}/*이소스에사용된것으로는stack, queue, tree 이며후위표기를중위 ... *head, *tail;#define MAX 100node *stack[MAX];int top;void init_stack(){top = -1;}node *push(node *t
    Non-Ai HUMAN
    | 리포트 | 6페이지 | 1,000원 | 등록일 2011.06.23
  • 6주차 스택과 큐
    : Stacks and Queues** This is the main program provided to students who registered* in "Programming Lab ... " at School of Information and Communication,* Sungkyunkwan University.*/#include #include typedef s ... ] Pushing items into a stack*/printf("\nPushing data into a stack\n");for(i = 0 ; i < MAX_NUM ; i++) {if
    Non-Ai HUMAN
    | 리포트 | 1,000원 | 등록일 2011.07.20
  • 원형 Queue + Stack 을 함께 구현한 C source와 실행화면
    .switch(select) // 입력, 삭제, 출력, 종료 중 택1{case 1 : put(queue, &front, &rear, stack, &sfront, &srear ... ); break;// Queue, Stack에 입력 데이터 저장.case 2 : get(queue, &front, &rear, stack, &sfront, &srear); break ... .void put(int* queue, int* front,int* rear,int* stack, int* sfront,int* srear);void get(int* queue
    Non-Ai HUMAN
    | 리포트 | 5페이지 | 1,500원 | 등록일 2009.11.27
  • 스택과 큐로 구현한 maze문제
    tack,queue를 이용해 탈출경로를 탐색하고 그 경로로 step수를 표시하고, 반시계방향으로 stack,queue를 이용해 탈출경로를 탐색하고 그 경로로 step수를 표시한후 ... 각각의 차이점을 분석하여야한다.2.Method & experiment1-1) 조교님이 주신 자료에 나와있으므로 넘어가겠다.1-2) stack의 pop, push path함수는 조교 ... 님이 주신자료와 수업자료에서 참고하여서 작성하였다. 우선 일정한 지도를 랜덤으로 생성하여 path함수로 보내주면 path함수 안에서 stack[0]에 시작주소를 넣어준다. 그다음
    Non-Ai HUMAN
    | 리포트 | 25페이지 | 3,500원 | 등록일 2010.07.22 | 수정일 2014.06.22
  • c로 쓴 자료구조론 연습문제 5장(트리)
    ) { // 서브트리의 루트를 찾을 때 까지 자료삭제.ptr = *((PNODE*)pop( stack_node , &top ,TYPE_PNODE));}push( stack_node , ... == ','){pop( stack_node , &top ,TYPE_PNODE);ptr = *((PNODE*)get_top( stack_node , &top , TYPE_PNODE ... ));ptr->link = GetNewNode( DLINK , NULL );push( stack_node , &top , ptr->link , TYPE_PNODE );}// 문자노드
    Non-Ai HUMAN
    | 리포트 | 41페이지 | 1,500원 | 등록일 2011.11.08
  • c++자료구조론-3장 연습문제
    에 대입을 하는 과정으로 자료의 삽입을 한다.templatevoid Stack::Push(const T& x)//template 클래스 stack의 push{//스택에 x를 삽입 ... -1을 top에대입.stack[top--].~T(); //T에 대한 파괴자}5. queue의 정의를 쓰고 queue의 추상데이타타입을 정의하시오.큐는 선입선출(FIFO)리스트이며 한 ... 다. 템플릿은 기본적인 c++타입이든 사용자 정의 타입이든 간에 어떠한 타입으로도 인스턴스화될 수 있는 변수이다.2. stack의 정의를 쓰고, stack의 추상데이타타입을 정의하시
    Non-Ai HUMAN
    | 리포트 | 4페이지 | 1,000원 | 등록일 2009.06.23
  • C로 구현한 스택, 큐, 정렬, 검색
    #include #include using namespace std;class memory{int stackflag, queueflag; //stackqueue의 갯수를 세기 ... 위한 변수int tempflag; //stackqueue의 갯수 임시 저장소.int positionnum; //자료가 가르키는 곳의 위치.typedef struct _node ... Search(int num); //그 자료형의 위치를 검색한다.void SelectMode(int num); //stack일 경우 100, queue일 경우 200void
    Non-Ai HUMAN
    | 리포트 | 2,000원 | 등록일 2010.06.19
  • 자료구조 기말 요약
    ? Data비순환 중위운행(stack)레벨순서 운행(queue)- 제거한 주소의 data 출력 후 링크 번지들을 저장- 루트와 루트의 자노드를 넣은 뒤 루트를 빼고그 자노드의 자 ... 트리차수(degree) : 노드의 subtree의 수단말노드(Terminal node) : 차수가 0인 노드(맨끝)비단말노드 : 차수가 0이 아닌 노드(단말노드 제외)제노드 ... (parent(subtree, subtree, ...))tree 차수 : knode 수 : nlink 수 : nk실재 존재하는 link 수 : n-1null(0) link 수 : nk-(n
    Non-Ai HUMAN
    | 시험자료 | 4페이지 | 1,500원 | 등록일 2016.12.04
  • 자료구조(반복적중위순회, 레벨순서순회 C언어 소스코드)
    );}stack[++*top]=ptr;}tree_pointer pop(int *out){if(*outdata);if (ptr->left_child)c_addq(front, &rear ... tack[MAX];int top=-1;tree_pointer queue[MAX];int front=0;int rear=0;tree_pointer create(); // 이진트리 생성함수 ... 자료구조 < 반복적 중위순회, 레벨순서 순회 소스코드>#include #define MAX 100typedef struct node *tree_pointer;typedef s
    Non-Ai HUMAN
    | 리포트 | 5페이지 | 1,000원 | 등록일 2010.04.29
  • 비행기 활주로 이착륙 시뮬레이션
    _stack(top)((top) == -1)//큐가 비어있는지 가득차 있는지 체크#define IsFull_queue( ptr_queue )( (ptr_queue)->size ... _front( QUEUE* queue , PLACE item );// 큐 앞쪽에 아이템 삽입PLACEstack_pop( PLACE* stack , int* top );// 스택 팝 ... Subject : Airplane landing & takeoff pattern simulationRequirement1.활주로는 3개를 가진다(0,1,2)2.네 가지 착륙순위
    Non-Ai HUMAN
    | 리포트 | 36페이지 | 2,500원 | 등록일 2009.11.25
해캠 AI 챗봇과 대화하기
챗봇으로 간편하게 상담해보세요.
2026년 03월 15일 일요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
9:06 오전
문서 초안을 생성해주는 EasyAI
안녕하세요 해피캠퍼스의 20년의 운영 노하우를 이용하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 AI가 방대한 정보를 재가공하여, 최적의 목차와 내용을 자동으로 만들어 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
- 스토어에서 무료 이용권를 계정별로 1회 발급 받을 수 있습니다. 지금 바로 체험해 보세요!
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감