• 통합검색(82)
  • 리포트(70)
  • 시험자료(6)
  • 논문(4)
  • 자기소개서(1)
  • 방송통신대(1)
EasyAI “stack&queue” 관련 자료
외 32건 중 선별하여 새로운 문서 초안을 작성해 드립니다
생성하기
판매자 표지는 다운로드시 포함되지 않습니다.

"stack&queue" 검색결과 1-20 / 82건

  • 전기전자프로그래밍 7. stack&queue
    1. Introduction-이번 실습의 목적은 Stack 방식과 Queue 방식을 이해하고 이를 실습에 적용하는 것이다. stack과 que는 사용자가 원하는 같은 형식의 자료 ... data into a stack\n");for(i = 0 ; i < MAX_NUM ; i++) {if(data0[i] < 0)break;if(!push(&top, data0[i ... ("\n");/**[2] Delete the stack, and pushing new data again*/printf("\nDelete the stack\n
    리포트 | 15페이지 | 1,000원 | 등록일 2014.08.15
  • 6. stack_and_queue
    으로 자료저장형태를 만드는 것이므로, headInsert(), tailInsert()등의 지난시간에 배운 함수를 이용하여 stackqueue를 구현할수 있다. stack과 관련된함수인 ... ); ]⇒ 구현된 queue에 node를 이용하여 기존의 stack 맨위에있던data 하나를 꺼내오는함수. 맨 위에 있던 데이터는 함수의 두 번째 argument 인 "i_data"를통하 ... reseain*/printf("\nDelete the stack\n");deleteStack(&top); //stack을제거if(top) {fprintf(stderr, "Stack
    리포트 | 15페이지 | 3,000원 | 등록일 2011.06.24
  • [C언어] stack & queue (스택과 큐)
    stackqueue방식의 입력과 출력에 관한 C소스입니다.주석과 함께 있으니 참고하시기 바랍니다. 단 queue는 원형 queue를 구현한것입니다.Queue 결과{Queue ... 소스///////////////////// 학번 : 027150 //// 이름 : 김용휘 /////////////////////#include int queue[5]={0 ... ;int input;while(1){printf ("입력 = '1', 출력 = '2', 끝 = '3'을 입력하시오 : ");scanf ("%d",&n);if (n==1){printf
    리포트 | 4페이지 | 1,000원 | 등록일 2003.06.04
  • [자료구조]스택,선형큐,환형큐 문제 + 소스코드
    -)printf("%d %s\n", stack[i].id, stack[i].name);puts("");}#include #include #include #define MAX_QUEUE ... ;// unique idchar name[MAX_NAME_SIZE]; // last name}element;element stack[MAX_STACK_SIZE];int top = -1 ... = strtok_s(input, delimiter, &context);if (!strcmp(op, "push")){//context는 구분 후 주소값sscanf_s(context
    리포트 | 10페이지 | 2,000원 | 등록일 2021.07.31
  • [부경대학교] 자료구조 (c언어로 쉽게 풀어 쓴) 4, 5장
    n = strlen(str);init_stack(&stack, n);printf("괄호 수 : ");for (int i = 0; i < n; i++) {ch = str[i];s ... tack(&stack, n);printf("출력 : ");int count = 1;int now_int, before_int;push(&stack, (str[n - 1]-'0 ... '));for (int i = n - 2; i > -1; i--) {now_int = str[i]-'0';before_int = peek(&stack);// 대문자 -> 소문자if (now
    리포트 | 33페이지 | 3,500원 | 등록일 2021.09.15
  • 자료구조 5장 스택 연습문제
    에 해당하는 조건은?(a) front ==0 && rear ==0(b) front ==(MAX_QUEUE_SIZE-1) &&rear ==(MAX_QUEUE_SIZE -1 )(c ... 를 꺼내서 스택 #2에 넣는다. 프로그램으로 작성해보자.답:#include #include #include typedef struct stack_01 {//stack_01char ... data;struct stack_01 *link;}stack_01stack_01 *top_01;typedef struct stack_02 {//stack_02char data;s
    리포트 | 9페이지 | 1,500원 | 등록일 2020.11.11
  • 판매자 표지 자료 표지
    [아이티뱅크] 자료구조_스택과 큐의 개념에 대하여 비교 설명하고 스택과 큐가 컴퓨터 실행에서 활용되는 사례를 상세히 기술하시오
    -explained/ https://www.studytonight.com/data-structures/stack-and-queue-data-structure ... /wiki/Queuehttps://www.geeksforgeeks.org/data-structures/stacks/https://www.freecodecamp.org/news/queues ... 스택과 큐의 개념에 대하여 비교 설명하고 스택과 큐가 컴퓨터 실행에서 활용되는 사례를 상세히 기술하시오.[서론]컴퓨터 프로그래밍에서 스택(Stack)과 큐(Queue)는 데이터
    리포트 | 2페이지 | 3,000원 | 등록일 2023.04.21
  • c언어로 쉽게 풀어쓴 자료구조 5장 연습문제
    , int item) {Stack_push(&(q->s1), item);return;}int Queue_pop(Queuetype* q) {if (is_empty(&(q->s2 ... 는 스택 #1의 모든 요소를 꺼내서 스택 #2에 넣는다.#include#define MAX_SIZE 100typedef struct Stacktype {int stack[MAX ... tack[++(s->i)] = item;return;}bool is_empty(Stacktype* s) {return s->i == -1;}int Stack_pop
    시험자료 | 8페이지 | 1,500원 | 등록일 2021.04.12
  • 연결 스택과 연결 큐 삽입 삭제 cpp
    onst int&); //삽입 함수int* sPop(int&); //삭제 함수void sPrint(); //stack 출력 함수};class LinkedQueue {private ... int&); //삽입 함수int* qPop(int&); //삭제 함수void qPrint(); //queue 출력 함수};#endif // !CHAIN_HStack.cpp cpp ... 파일#include using namespace std;#include "ChainNode.h" //헤더파일 선언void LinkedStack::sPush(const int& e
    리포트 | 11페이지 | 1,000원 | 등록일 2021.03.04
  • 판매자 표지 자료 표지
    c로 배우는 쉬운 자료구조 6장(스택)
    list in which all insertions and deletions are made at one end, called the top.가. stack 나. queue 다 ... 은? (2005년 기출문제)The reverse Polish notation is in a form suitable for stack manipulation. The expression ... form suitable /for stack manipulation./ The expression (A+B)*(C+D) /is written in reverse Polish
    리포트 | 7페이지 | 5,000원 | 등록일 2022.05.20
  • 판매자 표지 자료 표지
    os 기출문제
    running job to voluntarily yield the CPU. 2) The scheduler can interrupt a job and force a context ... 이 cancel되었는지를 확인하는 함수는?pthread_testcancel()7. 각 쓰레드마다 제공되는 자원은 레지스터 정보(hardware context)와 ( stack ) 이 ... exclusion 2)hold and wait 3)no preemption 4)resource sharing 5)circular wait3. banker algorithm
    리포트 | 5페이지 | 1,000원 | 등록일 2024.08.12
  • 백준 1129번(키) 문제 간단한 풀이 및 정답 소스
    truct xy{int x,y;}init;queue poss;stack p;int N,d[50][50],chk[50][50],A[50];int main(){int i,j,k,Min,rslt=9999;scanf("%d",&N);for(i=0; i ... 지만, 점화식에 간단한 조건을 걸어주는 것으로도 이 문제를 해결할 수 있습니다.정답 코드#include#include#include#includeusing namespace std;s
    리포트 | 5페이지 | 1,500원 | 등록일 2020.10.01
  • [방송통신대학교]C++프로그래밍_동영상강의,기출_핵심요약노트
    () < endl;...}* 복사 생성자의 머리부 내용Copycat(const Copycat& cc)= 0;}};정답 : strcmp(buf, mstr.buf) >= 0 strcmp(s ... : ㈀ template, ㈁ T, ㈂ new T[s], ㈃ T& ㈀에는 템플릿 선언을 위한 키워드인 template이 필요하며, ㈁에는 이 컨테이너 클래스가 저장하고자 하는 자료형에 해당 ... 순위에 따라 데이터를 액세스할 수 있는 구조stack : LIFO(Last In, First Oout)* inline 함수는 포인터를 보낼 수 없게 되어 있음* 함수객체 : 함수처럼e
    방송통신대 | 35페이지 | 3,000원 | 등록일 2023.04.09
  • 구글코리아 면접기출(최신)+꿀팁[최종합격!]
    자료구조에 대한 이해 (stack, queue, priority queue, hash map), 비동기와 동기의 차이에 대한 이해 대해서 물어보셨습니다. 2. 온사이트 인터뷰 ... 최종 합격! ★BEST★ 구글코리아 최신 면접 기출+꿀팁 ㄹ ▣면접경험&꿀팁 인터뷰 프로세스는 총 다섯 단계로 진행됩니다. 1. 서류 단계 자신의 이력서를 제출하는 단계입니다 ... 질문을 하는데 여기서 심사를 한다기보다는 채용 절차시 필요한 서류를 작성하는데 부족한 정보들을 물어보고 채워넣는 느낌이 강합니다. 3. 전화 면접 (phone screen) 구글
    자기소개서 | 7페이지 | 19,900원 | 등록일 2022.05.22
  • 자료구조 - 연결리스트(2) 요약 및 소스 분석, 코드 개선 과제
    노드? 공백 상태에서는 헤드 노드만 존재함1-2분석&설계(역공학) - 디버깅내용(손분석, 화면캡쳐)■ 분석내용 1? cir_list.c#print_list ->새로운 노드 p ... _queue.c#main->큐 생성 및 초기화->큐 삽입 및 출력( 맨 아래 큐부터 1, 2 ,3 출력)->큐 삭제 (먼저 들어간 큐부터 삭제)#큐를 리스트로 구현하기 위해 fron ... temp노드 선언(선입선출)->큐가 공백상태가 아닐 때, temp의 data를 꺼냄->front를 다음 노드를 가리키게 함#print_queue->p 노드=q->front 선언
    리포트 | 10페이지 | 2,000원 | 등록일 2020.09.01 | 수정일 2020.09.04
  • 로봇의 미로 탐색 문제해결을 통한 스택과 큐 학습 방안 (A Learning Method of Stack and Queue through Solving Maze Exploration Problems with Robots)
    learning method of Stack and Queue using LEGO MINDSTORMS NXT. The main purpose is that how stack and ... return to entrance using stack. Master robot explores maze and transmits path to slave's queue. And ... queue are used, when robot explore realistic maze. Teaching and learning strategies are algorithm
    논문 | 6페이지 | 무료 | 등록일 2025.07.13 | 수정일 2025.07.20
  • 자동 채점 시스템을 활용한 스택과 큐 자료 구조 학습 자료 개발 (Development of Stack and Queues Data structure learning Materials Using Online Judge system)
    data structures, particularly stacks and queues, for problem-solving. However, there is currently a ... providing materials that systematically teach the principles of stacks and queues and solve problems ... discusses a learning program developed to help understand and utilize the data structures of stacks
    논문 | 11페이지 | 무료 | 등록일 2025.07.13 | 수정일 2025.07.20
  • 행정고시(5급공채) 전산직 합격자 정리노트(QnA) - DS
    No장구분시드중요점수질문정답133.10.716 O스택의 정의에 필요한 변수와 연산은? 큐의 정의에 필요한 변수와 연산은?"스택(변수: top, stack[MAX_STACK ... _SIZE], 연산: push(element), pop()), 큐(변수: front, rear, queue[MAX_QUEUE_SIZE], 연산: addq(element), deleteq ... : front==rear를 검사"333.30.464 원형 큐에서 원소의 최대 개수는? 그 이유는?"원형 큐의 최대 원소 개수는 MAX_QUEUE_SIZE-1임. MAX_QUEUE
    시험자료 | 1페이지 | 10,000원 | 등록일 2023.03.26 | 수정일 2023.06.07
  • 판매자 표지 자료 표지
    2021 데이터구조 기말고사
    . We have postfix notation as 2 5 – 4 * 3 7 1 + / -So, we should solve it as stack as the picture ... . When we see this part of the textbook, we see performGatelogic so we go to that part and the picture ... self.pin is c1 and this is a connector. The self.pin.getfrom gets the pin from the gate. The basic
    시험자료 | 7페이지 | 3,500원 | 등록일 2022.11.07
  • 저장시스템의 응답 시간 개선을 위한 효율적인 이중 큐 전략 (An Efficient Dual Queue Strategy for Improving Storage System Response Times)
    equentially stacking them in an internal queue. When long transfer length requests are processed first ... processing technologies such as big data, cloud computing, and artificial intelligence have increased the ... demand for high-performance storage devices in data centers and enterprise environments. In
    논문 | 6페이지 | 무료 | 등록일 2025.07.13 | 수정일 2025.07.20
해캠 AI 챗봇과 대화하기
챗봇으로 간편하게 상담해보세요.
2025년 07월 27일 일요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
7:20 오후
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
- 스토어에서 무료 캐시를 계정별로 1회 발급 받을 수 있습니다. 지금 바로 체험해 보세요!
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감