U E D R , A S I H C RSS

자료구족발보쌈/0722 (rev. 1.3)

자료구족발보쌈/0722

탈주자로 인하여 잠수함이 못내려가요. 더 무거워져야 될텐데..


1. 참여자 명단


함장 장용운 11학번 도스마스
선원 천준현 15학번 행방불명
최지혁 출석
박인서 도스마스
이정재 고향
이원준 출석
조종현 장염
남헌 도스마스

2. 수업

2.1. 진행

1. 장소 : 6층 학회실
2. 시간 : 14시 ~ 17시

2.2. 내용

보충. 스택과 큐 연습
  • 은행 관리 프로그램

3. 코드

3.1. 예제1

  • 큐를 이용하여 은행에 저장된 사람이름, 계좌번호, 잔액을 순서대로 나오게 작성하시오.

4. 숙제

1. 스택과 큐 복습하기



5. 숙제 제출

5.1. 천준현


5.2. 최지혁


5.3. 박인서

5.3.1. 예제 1

#include <stdio.h>
#include <stdlib.h>

typedef struct bank{
	int money;
	int num;
	char * name;
}bank;

typedef struct node{
	bank val;
	struct node* next;
}node;

void push(node *);
void pop(node *);

int main()
{
	node head;
	int i;
	head.next=NULL;
	for(i=0;i<10;i++) push(&head);
	for(i=0;i<10;i++) pop(&head);
	return 0;
}

void push(node * target)
{
	node * newnode=(node *)malloc(sizeof(node));
	node * temp=target->next;
	int tmoney,tnum;
	char * tname=(char *)malloc(sizeof(char)*100);
	scanf("%s %d %d",tname,&tnum,&tmoney);
	newnode->val.name=tname;
	newnode->val.num=tnum;
	newnode->val.money=tmoney;
	target->next=newnode;
	newnode->next=temp;
}

void pop(node * target)
{
	node * kill=(node *)malloc(sizeof(node));
	if(target==NULL) abort();
	if(target->next->next==NULL)
	{
		printf("%s %d %d\n",target->next->val.name,target->next->val.num,target->next->val.money);
		kill=target->next;
		target->next=NULL;
		free(kill);
	}
	else pop(target->next);
}

5.4. 이정재


5.5. 이원준


5.6. 조종현


Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:30:38
Processing time 0.0254 sec