• 통큰쿠폰이벤트-통합
  • 통합검색(56)
  • 리포트(43)
  • 시험자료(5)
  • 자기소개서(4)
  • 방송통신대(2)
  • 서식(1)
  • 이력서(1)

"depth first search" 검색결과 1-20 / 56건

  • [알고리즘] Depth-first-search(깊이 우선 탐색)
    알고리즘 시간에 과제로 제출하였던 깊이 우선 탐색입니다.10점 만점에 10점 받았습니다.The Depth-First SearchProblem: Let n items be given, ... Determine a set of items with maximum total profit, under the constraintthat the sum of their weights ... from 1 to n, where the values of numbestset[i] is "yes" if the ith item is included in the optimal set
    리포트 | 5페이지 | 3,000원 | 등록일 2012.01.27
  • MATLAB - Depth first, Breadth first, Greedy, A-star, Dynamic search Algorithm + Optimal + Smoothing
    Path를 선택하면 Opti path를 애니메이션으로 보여줌또한 smoothing Path를 선택하면 smoothing path를 애니메이션으로 보여줌그리고 모든 각 코드가 들어있음개별 ... 코드를 보는것보다 한 눈에 비교가 가능하도록 프로그래밍 함썸네일은 한 탐색방법을 보여주고, opti path를 보여주고, smoothing path를 보여준 후 캡쳐 ... 깊이우선탐색너비우선탐색Greedy 탐색A-star, A* 탐색Dynamic programming등 원하는 탐색 방법을 선택 가능하고 그 탐색 경로를 애니메이션으로 보여줌.또한 Optimal
    리포트 | 3,000원 | 등록일 2014.04.25
  • 그래프의 깊이 우선 탐색(depth-first search) 예제 C 소스 프로그램.
    주어진 그래프를 깊이 우선 탐색(depth-first search)하는 예제 C 소스 프로그램입니다.
    리포트 | 1,000원 | 등록일 2010.08.26
  • 방송통신대학교 프라임칼리지 AI전공 인공지능 중간과제(만점취득)
    search)과 너비 우선 탐색(breadth-first search)으로 노드를 확장한 상태공간 트리(나) 언덕오르기 탐색을 적용하여 문제의 해를 구하려고 한다. ... 그림2(b)는 트리의 레벨 순에 따라 노트를 확장하는 너비 우선 탐색(breadth-first search)의 상태공간 트리를 나타낸다. ... search)으로 노드를 확장한 상태공간 트리를 나타낸다.
    방송통신대 | 4페이지 | 3,000원 | 등록일 2024.03.03
  • 큐 자료구조와 이진트리의 너비 탐색 (C언어)
    우선 탐색(DFS, Depth Frist Search)가 있다. ... search: BFS)은 시작 정점으로부터 가까운 정점을 먼저 방문하고 멀리 떨어져 있는 정점을 나중에 방문하는 순회 방법이다. ... exit(1);} else {q->front = (q->front + 1) % MAX_QSIZE;return q->queue[q->front];}}// 너비우선탐색void bfs_search
    리포트 | 7페이지 | 2,500원 | 등록일 2021.11.05
  • 중앙대 스마트경영 smartbusiness The Shallows 레포트
    As the world ‘Internet surfing’ has emerged, people constantly acquire in-depth information that suits ... They feel rejected by text which fill the screen, even they search for need. ... In addition, the ironic statistic is that the most searched word of Naver was YouTube.
    리포트 | 3페이지 | 5,000원 | 등록일 2021.06.17
  • 분단탐색법
    분단탐색법은 선택 방식에 따라 너비 우선 탐색(Breadth-First search), 깊이 우선 탐색(Depth-First search), 최상 우선 탐색(Best-First search ... ), 그리고 임의 탐색(Random search)으로 구분할 수 있다.병렬 처리는 알고리즘의 성능을 결정하는 중요한 요소이다. ... 분단탐색법은 상태 공간 트리를 만들어 문제를 해결하지만, 궁극적으로는 가능한 모든 해를 다 고려하여 최적해를 찾는다는 점이 차이점이다.분단탐색법은 외판원 문제(Traveling salesman
    리포트 | 4페이지 | 2,000원 | 등록일 2022.06.30
  • 인공지능 과제(20년 2학기)
    .- 이하 과제 작성※ 표지는 A4용지 사용(가) A* 알고리즘의 주요 개념을 설명하라.A*알고리즘은 BFS(Breadth First Search), DFS(Depth First Search ... )같은 searching algorithm중에 하나이다.A*알고리즘은 그 중에 heuristic한 방법을 이용해서 좀 더 빠르게 search를 진행하고자 하는 알고리즘이다.A* 알고리즘은 ... s₩n%s₩n₩n%s”,“8-퍼즐 문제!!”
    방송통신대 | 10페이지 | 7,000원 | 등록일 2020.09.28
  • 고려대,성균관대,서강대,건국대 컴퓨터공학과 편입면접 대비 자료
    Depth first search, 수식의 괄호 검사, 후위 표기법 계산 등에 사용할 수 있다. 구현은 배열과 연결 리스트로 가능하다.3. 큐? ... first search : 임의의 노드(트리는 루트 노드)에서 시작하여 다음 분기로 넘어가기 전에 해당 분기를 끝까지 탐색※ Breadth first search : 임의의 노드( ... 데이터가 입력된 시간 순서대로 처리해야 할 필요가 있을 때 사용하며 Breadth first search, 대기열 구현 등에서 사용할 수 있다.
    리포트 | 13페이지 | 7,000원 | 등록일 2020.01.31 | 수정일 2021.01.09
  • Ethnography - Elderly people in Japan
    At first, almost everyone denied to get interview. ... We searched the article about ‘lonely death’, and that made us be interested in isolation of elderly ... After that, interview went well, before doing one in-depth interviewee.
    리포트 | 3페이지 | 2,500원 | 등록일 2021.07.03
  • 교환학생 영문학업계획서
    I searched some of the lectures that will meet my interest which was “Battery and Storage Systems”, “ ... During those time, ironically, I had more moments to think about my future life in depth. ... I think I can get help in these points.​As I mentioned at the first my dream is to live a valuable life
    자기소개서 | 2페이지 | 3,000원 | 등록일 2021.01.19
  • [영문] PMCF 계획서
    title of first 10 articles. ... different result in device performance or safety, the reason should be analyzed in depth. ... asCase reportAnimal model studyFor search result of each keyword exceeding 50 hits, review summary and
    서식 | 11페이지 | 2,000원 | 등록일 2021.09.01
  • 모두의 인공지능 총요약본
    순회 방법② 깊이 우선 탐색(DFS, depth-first search)· 시작 정점으로부터 한 방향으로 갈 수 있을 때까지 계속 가다가 더 이상 갈 수 없게 되면 다시 가장 가까운갈림길로 ... 탐색전략1) 맹목적 탐색① 너비 우선 탐색(BFS, breadth-first search)· 시작 정점으로부터 가까운 정점을 먼저 방문하고 멀리 떨어져 있는 정점을 나중에 방문하는 ... 탐색(search)· 초기 인공지능 기술이며 현재도 유효· AlphaGO는 신경망을 응용한 탐색 시스템7.
    시험자료 | 5페이지 | 2,000원 | 등록일 2020.07.22 | 수정일 2023.01.17
  • [데이터구조론/과제] Depth First Search (소스코드 및 결과화면 포함)
    데이터구조론HOMEWORK-Depth First Search담당교수 : 000 교수님제출일자 : 2010년 5월 00일학 과 : 000000학 번 : 0000000(0학년)제 출 자 ... : 000데이터구조론0000000 000o 그래프 모습o 결과화면o 소스#include#include#include#defineMAX_VERTEX 6#defineFALSE 0#defineTRUE ... ;struct stackNode* link;} stackNode;stackNode* top;graphNode* w;void push(int item);int pop();void createGraph
    리포트 | 6페이지 | 1,000원 | 등록일 2014.01.09
  • 0-1 Knapsack Problem (0-1 배낭 문제) - 전체 C 코드, 입력 데이터셋 및 출력 결과 포함
    방법 1(depth first search with branch-and-bound)의 경우 재귀함수를 호출하여 자식 노드를 생성하는 방식으로 구현하였다. ... 이 solution vector를 구하기 위해 현재 상태가 최대 이윤인 경우(최대 무게보다 작거나 같은 상황에서) 현재 상태를 따로 저장해두었다.방법 2(breadth first search ... 재귀함수 호출 대신 단일 반복문을 사용하여 구현하였다.방법 3(best-fit search with branch-and-bound)의 경우 priority queue를 통해 노드를
    리포트 | 18페이지 | 1,000원 | 등록일 2019.04.11
  • supra epiglottitis, 후두염, 후두개염, 성인간호학실습
    depth=1&hl=ko&prev=search&rurl=translate.google.com&sl=en&sp=nmt4&u=https://www.ncbi.nlm.nih.gov/pmc/ ... depth=1&hl=ko&prev=search&rurl=translate.google.com&sl=en&sp=nmt4&u=https://www.ncbi.nlm.nih.gov/pmc/ ... At first, these 처음에는 medications are given into the vein (intravenously) as this method is the most effecti이
    리포트 | 18페이지 | 2,500원 | 등록일 2018.09.25
  • [자료구조]넓이 우선 탐색 및 깊이 우선 탐색 C언어 소스코드
    1.BFS : 7 0 4 5 6 1 3 2DFS : 7 6 2 5 4 3 1 0풀이과정 스캔하여 첨부하였습니다.2.소스 실행 화면소스 파일 첨부 하였습니다.3.Start -> 00 1 2 3 4 5 6- 10 infinity infinity infinity 28 inf..
    리포트 | 4페이지 | 2,000원 | 등록일 2013.07.29
  • 원격평생교육원 이산수학 과제(그래프 문제풀이)
    알고리즘을 살펴보면 다음과 같다.depth_first_search(v)v를 방문되었다고 표시;for all u ∈ (v에 인접한 정점) doIf (u가 아직 방문되지 않았으면)then ... depth_first_search(u)문제 B의 경우 정점 a를 기준으로 깊이우선 탐색을 실행하면 먼저 a를 기준으로 인접한 정점 c를 탐색하고, 다음으로 c를 기준으로 인접한 정점 ... 알고리즘을 살펴보면 다음과 같다.breadth_first_search(v)v를 방문되었다고 표시;큐 Q에 정점 v를 삽입;while (not is_empty(Q)) doQ에서 정점
    리포트 | 5페이지 | 3,900원 | 등록일 2015.12.05 | 수정일 2016.02.01
  • 서울대 연대 고대 국제대학원 자기소개서 [ 최종합격 ]
    In addition, in-depth research about the German SMEs’ growth model and Israel’s effective start-up ecosystem ... Furthermore, I will also take plenty of time in searching of FDI strency (KOTRA) will help me to better ... First, there is not enough local government where people can get help at the initial stage of company
    자기소개서 | 2페이지 | 19,900원 | 등록일 2016.10.27 | 수정일 2018.03.12
  • [기출 2001년~2017년]정보처리기사 필기 정리
    d1id=1&dirId=1040101&docId=186187997&qb=U0pGIOyKpOy8gOykhOungQ==&enc=utf8§ion=kin&rank=4&search_sort ... d1id=1&dirId=1040101&docId=186187997&qb=U0pGIOyKpOy8gOykhOungQ==&enc=utf8§ion=kin&rank=4&search_sort ... (Shortes Seek Time First)FIFO (First In First Out)SCAN모음: Hyperlink "http://blog.naver.com/botemi11/220061752982
    시험자료 | 54페이지 | 5,000원 | 등록일 2018.05.18
  • 아이템매니아 이벤트
  • 유니스터디 이벤트
AI 챗봇
2024년 09월 22일 일요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
5:25 오전
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
9월 1일에 베타기간 중 사용 가능한 무료 코인 10개를 지급해 드립니다. 지금 바로 체험해 보세요.
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감
방송통신대학 관련 적절한 예)
- 국내의 사물인터넷 상용화 사례를 찾아보고, 앞으로 기업에 사물인터넷이 어떤 영향을 미칠지 기술하시오
5글자 이하 주제 부적절한 예)
- 정형외과, 아동학대