• 통큰쿠폰이벤트-통합
  • 통합검색(38)
  • 리포트(36)
  • 논문(1)
  • 시험자료(1)

"singly linked list" 검색결과 1-20 / 38건

  • singly linked list와 doubly linked list를 각각 이용하여 phonebook 만들기(c, visual studio)
    Title (과목명)(reserved for Prof or TA)HW Number (HW 번호)Submit Date (제출일)Grade (학년)ID (학번)Name (이름)1. singly ... linked list를 이용하여 phonebook 만들기(1) Program Source Code#include#include#includestruct listNode{char name ... List에 item들이 있다면, 다음 link로 계속해서 넘어가면서 list에 있는 name과 우리가 입력해준 name을 비교한다(string compare를 이용).
    리포트 | 14페이지 | 1,500원 | 등록일 2014.02.04
  • singly linked list in C
    Linked list의 삽입을 C언어를 통해서 구현한다. ... data;list_ptr link;}list_node; void insert (list_ptr *first,list_ptr node){list_ptr fifth;fifth=(list_ptr ... #include #include typedef struct list_node *list_ptr;typedef struct list_node {int
    리포트 | 4페이지 | 1,000원 | 등록일 2010.11.08
  • [Java] singly-linked list
    () constructs an empty list. **/ public SList() { size = 0; head = null; tail = null; } ... size == 0; ... /** * isEmpty() indicates whether the list is empty
    리포트 | 1,000원 | 등록일 2005.04.05
  • algorithm
    linked list / O(n) / O(n) / O(n)2. doubly linked list / O(1) / O(1) / O(n)3. sorted singly linked list ... / O(n) / O(n) / O(n)4. sorted singly linked list / O(n) / O(n) / O(logn) ... Problem 1: Linked List1.1 Worst-case time complexity(data structure / insert / delete / search)1. singly
    리포트 | 2페이지 | 2,500원 | 등록일 2021.11.25
  • 가천대 2020 인공지능소프트웨어학과_자료구조 HOMEWORK1_ (1.linked list 스택 구현, 2. 2개의 큐로 스택 구현 3. 2개의 스택으로 큐 구현)
    singly linked list.typedef struct node {int data;struct node*next;}Node;Node*head = NULL;//---------- ... PHW 1-1Implement and Test a Stack Program, Using a Singly Linked List.for the same 4 functions (of Lab ... ;scanf_s("%d", &select);switch (select) {case 1:printf("Type the data to push : ");scanf_s("%d", &value
    리포트 | 17페이지 | 2,000원 | 등록일 2020.04.17
  • 경희대 소프트웨어적사유(소웨사) 기말고사 정리, 족보
    단순 연결 리스트(singly linked list) ★ 설명 주고 단답형 문제 출제 (정답 : 단순 연결 리스트)- 한 지점에 가면 그 곳의 데이터와 다음으로 이동할 위치정보가 있다 ... 이중 연결 리스트(doubly linked list)- 한 지점에 가면 그 곳의 데이터와 앞과 다음으로 이동할 위치정보가 있다.- 방문한 지점의 물리적인 위치는 중요하지 않다. ... 리스트(List) : 유한한 데이터를 저장하는 공간, 배열이나 연결리스트로 구현- 추가할 수 있는 빈 공간이 있을 때는 추가 데이터를 빈 공간에 추가- 추가할 데이터는 있으나, 추가할
    시험자료 | 11페이지 | 4,000원 | 등록일 2019.12.25
  • 주어진 자료를 single linked list를 활용하여 연결하여 sorting하고 파일 입출력을 활용하여 데이터를 관리하는 프로그램 작성(서강대 과제)
    이 방식을 사용한 이유는 singly linked list는 뒤로 돌아갈 수 없기 때문에 순차적으로 비교할 수 밖에 없다. ... 1.프로젝트 목적주어진 자료를 single linked list를 활용하여 연결하여 sorting하고 파일 입출력을 활용하여 데이터를 관리하는 프로그램을 작성한다.2.프로그램 알고리즘1 ... .Create a singly linked listread_data에서 fp라는 파일 포인터로 파일을 불러오고 newinput.txt파일 안에 있는 자료만큼의 메로리를 할당해 주고
    리포트 | 5페이지 | 1,000원 | 등록일 2013.08.11
  • big-o, time complexity, adt 문제
    (Programming) Linked list오름차순으로 정수 데이터가 저장된 두 개의 단순연결리스트(singly linked list)로부터 두 리스트의 데이터가 오름차순으로 합병된 ... struct list_node *list_pointer;typedef struct list_node {int data;list_pointer link;};list_pointer merge ... #include #include typedef int element;typedef struct Listnode {element data;struct Listnode *link;}Listnode
    리포트 | 12페이지 | 1,500원 | 등록일 2018.11.06
  • 영어 에세이 ESSAY - SAFE RESIDENTIAL CENTERS
    tabID=Viewpoints&resultListType=RESULT_LIST&searchResultsType=MultiTab&searchType=BasicSearchForm¤tPosition ... tabID=Viewpoints&resultListType=RESULT_LIST&searchResultsType=MultiTab&searchType=BasicSearchForm¤tPosition ... The Recovery Research Institute lists quality indicators that prospective patients shousments prior to
    리포트 | 4페이지 | 3,000원 | 등록일 2019.03.30
  • 20071026154927 2007년자료구조중간고사
    다음은 Singly Linked List를 설명하기 위한 Diagram이다. Node pointer t는 singly linked list의 첫번째 Node를 가리킨다. ... 새로운 element O를 linked list의 맨 앞에 저장하기 위한 operation을 pseudo code로 작성하라. (20점)9. ... 저장된 Data를 맨처음과 맨끝 만이 아니고 중간에 저장된 자료들도 Random하게 접근하기 위한 자료구조로 Vector와 List가 있다.
    리포트 | 3페이지 | 1,000원 | 등록일 2017.12.12
  • The Effects and Countermeasures of a Distribution System Linked to a High-Frequency System
    Recently, the development of semiconductors has made high-frequency switching possible. ... The Effects and Countermeasures of a Distribution System Linked to aHigh-Frequency SystemSeong-Ho Choi ... The TDD analysis results are listed in Table 1.
    논문 | 5페이지 | 50,000원 | 등록일 2020.04.30
  • [2014년] C++ 자료구조 4주차 연습문제
    연산을 수행할 때 링크를 삽입하여 하나 이상의 순서를 유지 할 수 있기 때문이다.2. singly linked list에 자료를 추가하는 과정을 설명하시오.첫 번째, 새로운 노드를 ... 스택을 linked list로 구현하는 방법을 설명하고 배열로 구현하는 경우와 비교하여 장단점을 쓰시오.Linked stack의 동작은 hanbat = 0을 초기화시킨 후 1을 추가하겠다면 ... 새 노드의 데이터 필드에 삽입할 데이터를 저장한다.세 번째, 새 노드의 링크필드에 앞 노드의 링크 값을 저장한다.네 번째, 앞 노드의 링크필드에 새 노드의 번지를 저장한다.3. singly
    리포트 | 4페이지 | 1,000원 | 등록일 2014.05.24
  • [자료구조론] - C언어 Make a Phonebook
    linked list for phonebook.(1) Program Source Code#include#include#include#define MAX_stacks 10#define ... the list\n");printf("4.: Print the list\n");printf("5.: Exit\n\n");printf("Enter the menu : ");scanf_s ... prof or TA)HW Number (HW 번호)Submit Date (제출일)Grade (학년)ID (학번)Name (이름)1. write a C program by using a singly
    리포트 | 19페이지 | 1,000원 | 등록일 2014.05.06
  • [C언어] 레스토랑 관리 프로그램 / Restaurant management program
    C언어로 구현한 레스토랑 관리 프로그램 (텀프로젝트 평가 만점)1974줄, 주석 포함, 에러 처리 포함txt파일로 파일 입출력singly linked list (단일 연결 리스트)를
    리포트 | 2,000원 | 등록일 2012.10.19
  • 무역창업론 발표자료
    Create content that people want to link to. ... relationships 핵심 공급자 제휴Strategic alliances 전략적 동맹 noncompetitive companies can often shorten the list ... ( 고객 서비스 문제 파악 ) Customer lock-in/ high switching costs ( 고ge.
    리포트 | 48페이지 | 1,000원 | 등록일 2016.03.26
  • 의학용어(영문)
    The combining form is always used when linking two roots, even if the second one starts with a vowel.80 ... Correct spelling is critical in health care80 slides total*PrefixesWhen prefixes are listed in medical ... total*Combining formsThe letter “o” is called the combining vowel It links the root to the “suffix,”
    리포트 | 80페이지 | 1,000원 | 등록일 2014.03.29
  • [자료구조] 단순연결리스트(Singly Linked List)
    node *link;};typedef struct {node *head;} linkedList_h; //헤더linkedList_h *createLinkedList_h(void); ... .cpp/** Report #3HW#3.cpp */#include using namespace std;struct node {char data[5];int stunumber;struct ... Report #3학번 20091111성명 ㅇㅇㅇ과목 자료구조분석담당교수 ㅇㅇㅇ제출일 2010.04.06-과제의 목적-요구 사항구조체 사용(node), 자기참조구조를 사용하여 다음 포인트를
    리포트 | 5페이지 | 1,500원 | 등록일 2010.07.10
  • 토익 또는 영어공부를 위해 엄선된 필수단어가 사용된 영문기사 문장들
    " saying that prosecutors will have to answer to the public for their failure to link Lee to the allegations ... her as its director.Prime Minister Benjamin Netanyahu is considering appointing a woman to the Likud list ... AbideAbide + 전치사: 머무르다, 살다(in, at), 지속하다(in)Abide + by: 지키다, 따르다, 준수하다Abide + 목/ ing/ toV: 참다A court
    리포트 | 22페이지 | 3,000원 | 등록일 2015.01.12 | 수정일 2016.01.05
  • Persimmons essay
    Of course, you can`t find singing rhythm in this poem. ... organized by that link, and delicate steps in storytelling.이하생략 ... After this, lots of episodes are just listing.
    리포트 | 3페이지 | 1,500원 | 등록일 2011.04.06
  • 단순연결리스트(Single Linked LIst)
    //single linked-LIst 구현#include #include //메모리 할당을 위해서#define FALSE 0#define TRUE 1typedef struct Nodes ... {int value;//데이터struct Nodes *next;//다음 노드를 가리 킨다.}Node;Node *HEAD=NULL;//헤드 single linked-List의 시작void ... //5를 삭제remove_Node(9); ;///없는 자료 삭제.insert_Node(7);insert_Node(8);insert_Node(9);print_Node();//연결된 list
    리포트 | 1,000원 | 등록일 2008.01.13
  • 아이템매니아 이벤트
  • 유니스터디 이벤트
AI 챗봇
2024년 09월 22일 일요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
10:46 오전
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
9월 1일에 베타기간 중 사용 가능한 무료 코인 10개를 지급해 드립니다. 지금 바로 체험해 보세요.
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감
방송통신대학 관련 적절한 예)
- 국내의 사물인터넷 상용화 사례를 찾아보고, 앞으로 기업에 사물인터넷이 어떤 영향을 미칠지 기술하시오
5글자 이하 주제 부적절한 예)
- 정형외과, 아동학대