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

"struct" 검색결과 41-60 / 2,104건

  • [중앙대학교] 전자전기공학부 기초컴퓨터프로그래밍 최종과제 소스파일(만점)
    (struct student *student_list); ... valid; // 성적입력여부int student_id; // 학번struct score *score; // 학생성적};void insert_score(struct student ... *student_list, struct score *score_list);void invalidate_score(struct student *student_list);void print_score
    리포트 | 3페이지 | 1,000원 | 등록일 2020.09.11
  • 정사컴과제9주차
    기본 값이기 때문이다.consume1 = struct('may',5,'june',4,'july',6);consume1(2)=struct('may',(consume1.may*month_product ... ,(consume4.july*month_product{4, 2}));consume5 = struct('may', 2, 'june', 4, 'july',3);consume5(2)=struct ... (2)=struct('may',(consume4.may*month_product{4, 2}),'june',(consume4.june*month_product{4, 2}),'july'
    리포트 | 4페이지 | 1,000원 | 등록일 2021.08.29
  • [김영평생교육원] - 자료구조 과제
    #include // 구조체 정의struct Student {char name[50];int roll_number;float grade;};int main() {// 구조체 변수 생성struct ... 실행 결과:성적 평균: 86.60구조체 사용#include // 학생 정보를 담는 구조체 정의struct Student {char name[50];int score;};int main ... () {// 두 명의 학생 정보를 저장할 구조체 배열 생성struct Student students[2];// 첫 번째 학생 정보 입력printf("첫 번째 학생의 이름을 입력하세요
    리포트 | 8페이지 | 2,000원 | 등록일 2023.10.20 | 수정일 2023.11.01
  • 자료구조 단순연결리스트 변형된 연결리스트 과제 소스코드 구현
    #include #include typedef int element;typedef struct ListNode {element data;struct
    리포트 | 7페이지 | 1,000원 | 등록일 2023.04.07 | 수정일 2023.05.23
  • 자료구조 단순연결리스트 삽입에서 역순까지 구현한 소스코드
    #include #include typedef int element;typedef struct ListNode {element data;struct
    리포트 | 5페이지 | 1,000원 | 등록일 2023.04.07 | 수정일 2023.05.23
  • 인공지능 과제(20년 2학기)
    [ ];double g,h,f;int prestate[ ] [ ];struct nodeinfo *link;}node;typedef struct nodeinfo *NODE;NODE ... 각각의 노드에 평가함수의 계산식 및 노드 확장 순서를 표시하라.# include # include # include typedef struct nodeinfo{int state[ ] ... s₩n%s₩n₩n%s”,“8-퍼즐 문제!!”
    방송통신대 | 10페이지 | 7,000원 | 등록일 2020.09.28
  • 유닉스 3인 이상 채팅 기능 / 생산자 소비자 응용 채팅 문제 / 세마포어 사용 / 공유메모리 사용 구현
    ;int enter[B]struct databuf1 buf[B];};union semun{int val;struct semid_ds *buf;short *array;};void sem_wait ... R 4#define B 5#define L 512struct databuf1{char data[L];int id;int reader;};struct databuf2{int write_index ... (1324, sizeof(struct databuf2), 0);buf(struct databuf2 *)shmat(shmid, 0, 0);}if((semid=semget(1234, 7
    리포트 | 4페이지 | 3,000원 | 등록일 2020.08.29 | 수정일 2020.11.18
  • C언어 문법 총정리
    _2)```#include struct Test1 {unsigned int a1;unsigned int a2;};struct Test2 {unsigned int a1 : 1;// 1bit로 ... ("stu.eng : %d\n", stu.eng);printf("stu.name : %s\n", stu.name);printf("stu.age : %d\n", stu.age);struct ... 배열을 만들어서 아래와 같이 사용 가능하다.struct Student2 stu_arr[3];stu_arr[0].kor = 10;stu_arr[1].kor = 20;stu_arr[2
    시험자료 | 28페이지 | 2,500원 | 등록일 2023.01.08
  • [자료구조] C언어로 빈도수표에 대한 허프만코드(huffman code) 구현
    ;9. struct TreeNode *right_child;10. } TreeNode;11. typedef struct {12. ... #define MAX_ELEMENT 1005. typedef struct TreeNode {6. char ch;7. int weight;8. struct TreeNode *left_child ... #include 2. #include 3.4.
    리포트 | 3페이지 | 4,000원 | 등록일 2020.10.07 | 수정일 2021.10.18
  • 급여관리 프로그램 작성 레포트
    출력 함수int findhigher(struct employee x[], int n);// 전체 직원 중 급여가 많은 직원 찾는 함수double salaryavg(struct employee ... printemployee_file(struct employee x);// 직원 정보 파일 저장 함수void printemployee(struct employee x);// 직원 정보 ... (struct employee x[], int n);// 직원별 총급여 계산 함수void compute_tax(struct employee x[], int n);// 세금 계산 함수void
    리포트 | 19페이지 | 2,500원 | 등록일 2022.06.05
  • C언어 성적처리 프로그램 예제
    {const struct student *s1 = (const struct student *)a;const struct student *s2 = (const struct student ... #define OUTPUTFILE "grade.txt" //석차별로 출력할 파일 정의#define NSTUDENT 10 // 입력파일의 학생수struct student{ //구조체 ... < NSTUDENT; i++)s[i].total = s[i].sub[0] + s[i].sub[1] + s[i].sub[2];//각 과목의 총합을 더하여 total에 저장// 버블소트for
    리포트 | 5페이지 | 1,000원 | 등록일 2021.01.02
  • 자료구조 Deque(덱/데크) 프로그래밍
    [데크(deque) C언어 소스코드]#include #include typedef char element;typedef struct DQNode {element data;struct ... DQNode *llink;struct DQNode *rlink;} DQNode;typedef struct {DQNode *front, *rear;} DQueType;DQueType ... *createDQue(){DQueType *DQ;DQ = (DQueType *)malloc(sizeof(DQueType));DQ->front=NULL;DQ->rear=NULL;return
    리포트 | 9페이지 | 2,500원 | 등록일 2023.08.06
  • [유닉스 시스템 프로그래밍] 7장 시그널
    []) {struct sigaction act;// 시그널 집합을 모두 비움sigemptyset(&act.sa_mask);// 시그널 집합에 SIGQUIT를 추가sigaddset(& ... , &act, (struct sigaction *)NULL) < 0) {perror("[에러] sigaction");exit(1);}// 나에게 SIGQUIT 시그널을 보냄kill( ... 구조체,// 기존에 처리할 방법을 지정한 sigaction 구조체)if (sigaction(SIGINT, &act, (struct sigaction *)NULL) < 0) {perror
    리포트 | 12페이지 | 1,000원 | 등록일 2022.02.09
  • c언어 요세푸스 문제 반시계방향 이중연결리스트
    #include #include typedef struct node{//int key;char value;struct node *next;struct node *prev; // 반시계 ... ");scanf("%d %d %d,",&n,&m,&start);AlgorithmJosephus(n,m,start);}void insert_node(int k){node *current ... //s = current->next;//current->next = current->next->next;s= current->prev;s->prev->next=current;current
    리포트 | 4페이지 | 3,000원 | 등록일 2022.09.27 | 수정일 2022.10.28
  • 행정고시(5급공채) 전산직 합격자 정리노트 - DS 코드
    , int beard;} u;// 둘 중 하나만 활성화} sextype;typedef struct {char name[10]; int age; float salary; date dob ... ;int age;float salary;};(Errata에 보면 바꾸라고 나옴)typedef struct {char name[10];int age;float salary;} humanBeing ... {char name[10];int age;float salary;} person;구조체 데이터 타입 선언p64typedef struct humanBeing{char name[10]
    시험자료 | 34페이지 | 10,000원 | 등록일 2023.03.26 | 수정일 2023.06.07
  • 합집합찾기(union-find)알고리즘을 이용하여 크루스칼 알고리즘 구현해보기
    )에 사용되는 함수int compare(const void* a, const void* b){struct Edge* x = (struct Edge*)a;struct Edge* y = ... struct GraphType {int n; // 간선의 개수struct Edge edges[2 * MAX_VERTICES];} GraphType;// 그래프 초기화void graph_init ... Edge e;set_init(g->n); // 집합 초기화print_sort(g, g->n);qsort(g->edges, g->n, sizeof(struct Edge), compare
    리포트 | 5페이지 | 1,000원 | 등록일 2020.06.29
  • 사용자로부터 직접 이름과 주소를 입력받아서 배열에 저장시킨 후 출력하는 프로그램
    9. struct address_book ab[100];?10. struct address_book *now;?11. int i, input_cnt = 0;? ... #include ?2. struct address_book?3. {?4. char name[100+1];?5. char address[500+1];?6. };? ... 16. scanf("%s", now->name);?17. if(strcasecmp(now->name, (char *)"quit") == 0)?18. {?
    리포트 | 2페이지 | 2,000원 | 등록일 2021.01.06
  • [자료구조] C언어로 가능한 모든 위상정렬을 구하는 프로그램 구현
    #define SWAP(x,y,t) ((t)=(x), (x)=(y), (y)=(t))8.9. typedef struct GraphNode10. {11. int vertex;12. struct ... GraphNode* link;13. } GraphNode;14.15. typedef struct GraphType {16. int n; // 정점의 개수17. ... #include 2. #include 3. #define TRUE 14. #define FALSE 05.
    리포트 | 5페이지 | 4,000원 | 등록일 2020.10.07 | 수정일 2021.10.18
  • [유닉스 시스템 프로그래밍] 3장 파일과 디렉토리 (2)
    );}void printSymbolicFileRealpath(char *symbolicFileName) {struct stat buf_symbolic;// 심볼릭 파일이 아니라면 아무 ... (errorMsg, "[오류] %s 열기 실패", dpName);perror(errorMsg);exit(1);}struct dirent *dent;int count = 0;// 디렉토리에 ... ;exit(1);}struct dirent *dent;// 디렉토리에 들어있는 각 파일마다 정보 출력while ((dent = readdir(dp)) !
    리포트 | 15페이지 | 1,000원 | 등록일 2022.02.09
  • 2020학년도 2학기 C++ 프로그래밍 출석대체과제물 소스코드
    using namespace std;struct C2D{double x, y;};class Polygon{int num; // 꼭짓점 개수vector points; // 꼭짓점들public ... 아래 소스 코드를 바탕으로 1번을 작성하시면 될 것 같습니다.// Polygon.h#ifndef POLYGON_H_INCLUDED#define POLYGON_H_INCLUDED#include ... // POLYGON_H_INCLUDED// Polygon.cpp#include #include "Polygon.h"Polygon::Polygon(int n, vector p): num
    방송통신대 | 3페이지 | 3,900원 | 등록일 2020.11.20 | 수정일 2020.11.24
  • 아이템매니아 이벤트
  • 유니스터디 이벤트
AI 챗봇
2024년 09월 15일 일요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
6:40 오전
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
9월 1일에 베타기간 중 사용 가능한 무료 코인 10개를 지급해 드립니다. 지금 바로 체험해 보세요.
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감
방송통신대학 관련 적절한 예)
- 국내의 사물인터넷 상용화 사례를 찾아보고, 앞으로 기업에 사물인터넷이 어떤 영향을 미칠지 기술하시오
5글자 이하 주제 부적절한 예)
- 정형외과, 아동학대