• 통큰쿠폰이벤트-통합
  • 통합검색(2,104)
  • 리포트(2,017)
  • 시험자료(64)
  • 방송통신대(14)
  • 자기소개서(5)
  • 논문(1)
  • 이력서(1)
  • ppt테마(1)
  • 노하우(1)

"struct" 검색결과 221-240 / 2,104건

  • 세종대 자료구조 재귀실습 코드
    #include#include //#include //#includetypedef struct div{int a;int b;}st;int cnt = 0;st divide(int a, ... 재귀 실습 1#define _CRT_SECURE_NO_WARNINGS//#define _CRTDBG_MAP_ALLOC#include #include#include#include // ... #define _CRT_SECURE_NO_WARNINGS//#define _CRTDBG_MAP_ALLOC#include #include#include#include //#include
    리포트 | 11페이지 | 1,000원 | 등록일 2022.04.15
  • 어원 덕분에 영어공부가 쉬워져서요
    당기다strict엄격한re"뒤로,다시"refill다시채우기post뒤에postpone연기하다~ ist명)행위자artist예술가duc이끌다education교육ann해마다annual매년의civi시civic도시의gard지켜보다regard여기다manu손manual안내책자ped발pedal페달struct세우다structure구조in ... 당기다strict엄격한ann해마다annual매년의civi시civic도시의gard지켜보다regard여기다manu손manual안내책자ped발pedal페달struct세우다structure구조apt맞추다apt적절한claim외치다claim주장하다gener태생geneu같은equal같은ess존재하다essence본질estim평가하다esteem존경하다fa말하다fable우화fall속이다fallacy오류fare가다fare ... 뜻대표단어대표단어뜻act행동하다react반응하다clde죽이다suicide자살fund기반fund자금lumin빛illuminate(빛을)비추다pass통과하다passenger승객spon약속하다sponsor후원자alter다른alter바꾸다circul원circular원형의fuse녹인다confuse혼동하다mag엄청난magnify확대하다path느끼다sympathy동정stick찌르다sticker스티커ama사람amateur아마추어cite부르다cite인용하다gar덮다garment의복mand명령하다demand요구하다patr아버지patriot애국자strict팽팽하게
    노하우 | 17페이지 | 20,000원 | 등록일 2022.12.18
  • Matlab을 이용한 간단한 음성필터 만들기
    GUIDE v2.5 17-Dec-2021 13:35:41% Begin initialization code - DO NOT EDITgui_Singleton = 1;gui_State = struct ... sample rate% nbits는 샘data, handles)% hObject handle to pushbutton2 (see GCBO)% eventdata reserved - ... and user data (see GUIDATA)[y,Fs] = audioread('filtered.wav'); % 필터곡 재생sound(y,Fs)% --- Executes on
    리포트 | 9페이지 | 1,000원 | 등록일 2022.05.30
  • The evaluation of patriarchy in intimate partner violence in Asian and Western society
    have great power to struct the form of society. ... There are various symptoms of victims such as severe depression, low level of self-esteem an ... victims will be stated.
    리포트 | 9페이지 | 12,000원 | 등록일 2020.09.19 | 수정일 2020.09.22
  • Teaching by Principles(An Interactive Approach to Language Pedagogy) CH. 20 정리
    ->validity can be established only by observation and theoretical justification.There is no struct. ... that simulate real-world interaction while still meetinuthenticity is interdependent skills, and so, ... ->carefully designed, identifiable scoring methods, specified time periods.
    시험자료 | 8페이지 | 2,000원 | 등록일 2022.07.22
  • 아래 그림의 이진 트리를 이용하여 트리 운행 과정과 결과를 나타내시오.(전위순회, 중위순회, 후위순회) [자료구조]
    #include struct bnode {char* name;bnode *left, *right;bnode(char* n, bnode *l, bnode *r):name(n), left ... = NULL) left->traverse_in_order();printf("%s\n", name);if (right ! ... (l), right(r) {}void traverse_pre_order() {printf("%s \n", name);if (left !
    리포트 | 5페이지 | 3,000원 | 등록일 2020.02.09 | 수정일 2023.06.30
  • Prologue Learning From Ladakh
    mainstream culture we blame innate human failings for our problems, while ignoring our own hand in the struct이 ... , and the poverty, disease, and starvation we see in the developing world might at first sight seem to ... The scale and the speed of our destructive power has never been so great.
    시험자료 | 5페이지 | 6,000원 | 등록일 2023.12.29
  • 성적관리프로그램 (ppt에 코드캡쳐 및 설명, 프로그램 실행화면 있음)
    실수형 변수인 double 을 사용하여 평균평점 (avg) 를 정의하였습니다 . ~ 구현한 함수 ~ - struct student- 구조체 를 사용하여 6~17 까지의 멤버변수들을 ... student_size) 만큼 반복을 하 고 같은지 비교를 해주는 함수인 strcmp 를 사용하여 같은 이름이 있는지 확인을 해주었습니다 . ... 문자열 변수인 char 을 사용하여 학점 (score), 주소 (address), 학생이름 (sName) 을 정의하였습니다 .
    리포트 | 21페이지 | 7,000원 | 등록일 2020.01.06
  • 원형 큐에 존재하는 요소의 개수를 반환하는 연산
    #include #define MAX_QUEUE_SIZE 7typedef int element;typedef struct {element queue[MAX_QUEUE_SIZE];int ... front, rear;} QueueType;//void error(char* message){fprintf(stderr, "%s\n", message);exit(1);}// 초기화
    리포트 | 9페이지 | 2,000원 | 등록일 2021.07.06 | 수정일 2021.10.19
  • 부경대학교 자료구조_9장_솔루션 및 족보
    수정된 삽입정렬 코드#define MAX_SIZE 100#define NAME_SIZE 32typedef struct {int key;char name[NAME_SIZE];} record ... list, 0, 2)와 quick_sort(list, 4, 7)14. ... 삽입정렬의 각 단계출력//insertion_sort(int list[], int n){int i, j, k;int key;for(i=1; i
    시험자료 | 10페이지 | 3,500원 | 등록일 2024.08.04 | 수정일 2024.08.20
  • 네트워크 통신의 이해
    /AF_LOCAL), IPv4 이므로 항상 AF_INET 설정 unist16_t sin_port; // 포트번호 struct in_addr sin_addr; // IP주소 char ... 네트워크 통신소켓 통신주소 정보의 표현 Struct sockaddr { sa_family_t sa_family; // 소켓의 주소체계 char sa_data[14]; // 해당 주소체계에서 ... 사용하는 주소정보 } // 소켓 주소를 표현하는 범용 구조체 Struct sockaddr_in { sin_family_t sin_family; // 소켓 주소체계(AF_INET/AF_INET6
    리포트 | 50페이지 | 1,500원 | 등록일 2022.01.08
  • 전자전기프로그래밍실습 기말고사 소스코드
    #define _CRT_SECURE_NO_WARNINGS#include #include typedef struct information{char name[50];char phone[ ... , "0");strcat(p1, n1);strcat(p1, "-");strcat(p1, n2);strcat(p1, "-");strcat(p1, n3);strcpy(ptr[*num]. ... (p2, "월");strcat(p2, m3);strcat(p2, "일");strcpy(ptr[*num].birthday, p2);fprintf(list, "%s %s %s\n", ptr
    시험자료 | 5페이지 | 2,500원 | 등록일 2021.03.14
  • 영어사전(A-Z) (어근, 접두사, 접미사) 정리
    [수학]정수(定數), 상수, 불변수, 변하지 않는 것ad. constantly 변함없이, 빈번하게 항상, 언제든지construct con(= together) +struct[짓다, ... 명 정신 spiritual 정신적인4. ... -(i)an : 명사 뒤에 붙어 (성질)의, ~에 속하는이란 뜻을 나타낸다.suburb 명 근교의 suburban 시외에 있는republic 명 공화국 republican 공화국의Brazil
    리포트 | 460페이지 | 3,000원 | 등록일 2020.11.15 | 수정일 2020.11.27
  • 경북대학교 컴퓨터그래픽스 기말고사 정리본 요약본
    linear interpolation. interplation of rotavalue_ptr(vertColor[0])Another VBOvertex에 관계된 정보를 묶어서 struct ... , rotation, and translation (T·R·S)- Instance Trasnformation: p'=T(dx,dy,dz)·R(θ1)·R(θ2)·R(θ3)·S(Sx,Sy ... ); // array가 한개이니 한번에 보내기 (sub 사용 불필요)glVertexAttribPointer(locPos, 4, GL_FLOAT, GL_FALSE, 8*sizeof(GLfloat
    시험자료 | 8페이지 | 5,000원 | 등록일 2022.06.22 | 수정일 2022.07.27
  • (C언어 레포트) 변수와 자료형
    고유한 의미를 갖는 특별한 단어(=예약단어)auto double int struct break else long switch case enum register typedef char ... 잘못된 식별자 : 2ne1(숫자로 시작), apple#(#기호), double(키워드) 좋은 변수 이름 변수의 역할을 가장 잘 설명하는 이름. ... extern return union const float short unsigned continue for signed void default goto sizeof volatile
    리포트 | 42페이지 | 3,000원 | 등록일 2020.12.31
  • c로 배우는 쉬운 자료구조 개정3판 7단원 연습문제
    정수를 인자로 받아, 주어진 숫자를 이진 탐색 트리에 삽입하는 재귀함수 Node* insertBinaryTree(Node* node, int val)을 작성하시오.Typedef struct
    리포트 | 6페이지 | 2,500원 | 등록일 2024.06.27
  • [일반화학실험] 단밸질 풀림 예비보고서
    또 유전 부호를 사용하여 유전자 서열에서 직접 읽을 수도 있다.2차 구조 (secondary struct와 카복실 산소 원자 사이의 수소 결합 패턴에 의해 정의된다. ... 등인데, 특히 소수성 상호작용이 가장 크게 기여한다.4차 구조 (quaternary structure)단백질의 4차 구조(quaternary structure)는 두 개 이상의 소단위체를 ... 종합한 구조를 도메인이라 한다.3차구조의 안정화 요인은 곁사슬간 또는 주사슬과 곁사슬 간의 상호작용으로 특수한 잔기 사이의 수소결합, 정전인력, 소수성 상호작용, 시스테인잔기 간의 S-S결합
    리포트 | 9페이지 | 1,000원 | 등록일 2021.10.12
  • 가톨릭대학교 의학분자진단학 기말고사 9~10주차 요점정리
    (=분비)√ Non-struct 역전사효소 억제제 등#9주차 3강 (마지막)< 기타 바이러스 정량검사 >① CMV (Cytomegalovirus_거대세포 바이러스)√ Herpes virus-B ... #9주차 1강? ... )√ 혈액/채액으로부터 감염 (ex_모유,복수,침,땀)모유 => 수직 감염O (=모자감염)√ 간염바이러스중 유일한 DNA Virus / C형과 함께 간암 유발O-> dsDNA + ssDNA
    리포트 | 14페이지 | 3,000원 | 등록일 2021.07.09
  • C언어로 쉽게 풀어쓴 자료구조 연습문제 6장 4, 5, 6, 7 7장 1, 3, 8장 10, 11 9장 9, 10 10장 6, 13, 15 11장 2, 6, 7, 10 12장 5, 6, 12 13장 5-(1)(2), 6-(1)(2)
    탐색을 했을 경우의 방문순서답 : 6 – 5 – 7 – 3 – 8 – 9 – 1 – 4 – 0 – 2풀이 : 시작 정점으로부터 가까운 정점을 모두 방문하고 hNode;typedef struct ... start, int n){int i, u, w;for (i = 0; i < g->n; i++){distance[i] = weight[start][i];found[i] = FALSE ... ;}found[start] = TRUE;distance[start] = 0;for (i = 0; i < n - 2; i++){u = choose(distance, n, found)found
    시험자료 | 16페이지 | 2,000원 | 등록일 2021.08.30
  • 2018 임베디드실습 기말고사 정리
    한 비트(DIM: disable idle mask)만을 제어에 사용한다.int request_irq(unsigned int, void (*handler)(int, void *, struct ... = R1 + R2ADD R3, R4, R5, LSR #2 ; R5를 2비트 logical shift right 후 R3 = R4 + R5● ADC{condition} {S} R과를 ... leftLSR logical shift rightROR rotate right예)ADD R0, R1, R2, LSL #3 ; R2를 3비트 logical shift left 후 R0
    시험자료 | 8페이지 | 1,500원 | 등록일 2019.10.19
  • 유니스터디 이벤트
AI 챗봇
2024년 09월 27일 금요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
6:37 오후
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감