1. Trang chủ
  2. » Giáo án - Bài giảng

Kĩ thuật lập trình Stack and Queue

3 405 0

Đang tải... (xem toàn văn)

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 3
Dung lượng 245,01 KB

Các công cụ chuyển đổi và chỉnh sửa cho tài liệu này

Nội dung

Assumption: Using the stack and queue’ tutorial. Stack: bool top(data); void push(value); bool pop(data); bool isEmpty(); int size(); Queue: bool front(data); void enqueue( bool dequeue( bool isEmpty(); int size(); Question 1: a) Write code to construct c và Kỹ thuật máy tính ọc máy tính 1 Tut 3: Stack Queue stack and queue’s methods described below to solve all questions inside this data); Get the value at top of stack, assign that value into ‘data’ and return true. If stack is empty, return value); Push a value on the top of stack. data); Remove the object at the top of this stack, assign value into ‘data’ variable, returns falseotherwise. Check if whether stack is empty. Return stack is empty and returnfalseotherwise. Return the number of elements in stack. data); Get the value at front of queue, assign that value into ‘data’ and return true. If queueis empty, return value); Add a value at rear of queue data); Removes the object at the front of this value into ‘data’ variable, returns true if success and false otherwise. Check if whether queueis empty. Return queueis empty and returnfalse otherwise. Return the number of elements in queue to construct a stack and a queue as follow all questions inside this stack, assign that value into . If stack is empty, return false; the object at the top of this stack, assign variable, returns true if success and Check if whether stack is empty. Return true if otherwise. in stack. et the value at front of queue, assign that value into . If queueis empty, return false; of this queue, assign variable, returns true if success and is empty. Return true if otherwise. queue.

Trang 1

Tut 3:

Assumption:

Using the stack and queue’

tutorial

Stack:

bool top(<any_type>&data);

void push(<any_type>value);

bool pop(<any_type>&data);

bool isEmpty();

int size();

Queue:

bool front(<any_type>&data);

void enqueue(<any_type>

bool dequeue(<any_type>

bool isEmpty();

int size();

Question 1:

a) Write code to construct

Tut 3: Stack& Queue stack and queue’s methods described below to solve all questions inside this

&data); // Get the value at top of stack, assign that value into

//‘data’ and return true If stack is empty, return

value); // Push a value on the top of stack

&data); // Remove the object at the top of this stack, assign

// value into ‘data’ variable, returns // falseotherwise

// Check if whether stack is empty Return // stack is empty and returnfalseotherwise.

// Return the number of elements in stack.

&data); // Get the value at front of queue, assign that value into

//‘data’ and return true If queueis empty, return

<any_type>value); // Add a value at rear of queue

<any_type>&data); // Removes the object at the front of this

// value into ‘data’ variable, returns true if success and // false otherwise

// Check if whether queueis empty Return // queueis empty and returnfalse otherwise.

// Return the number of elements in queue

to construct a stack and a queue as follow

all questions inside this

stack, assign that value into If stack is empty, return false;

the object at the top of this stack, assign

variable, returns true if success and

// Check if whether stack is empty Return true if

otherwise

in stack

et the value at front of queue, assign that value into

If queueis empty, return false;

of this queue, assign variable, returns true if success and

is empty Return true if

otherwise

queue

Trang 2

b) Add code to change above stack and queue

c) Add code to change above stack and queue

e.g push a primitive value

Stack s;

s.push(1);

Question 2: A Stacky program create

Stack s;

Double a;

s.push(0);

s.push(1);

s.push(2);

s.push(3);

s.push(4);

Some pop and cout statements are inserted

above stack and queue in (a) to:

to change above stack and queue in (b) to:(without using any primitive push a primitive value

program creates a stack and pushes following values

s.push(5);

s.push(6);

s.push(7);

s.push(8);

s.push(9);

statements are inserted randomly after first push statement

without using any primitive value)

following values orderly

9

after first push statement

Trang 3

For example:

Stack s;

Double a;

s.push(0);

s.push(1);

if(s.pop(a))

cout<<a<<” ”;

s.push(2);

s.push(3);

if(s.pop(a))

cout<<a<<” ”;

s.push(4);

if(s.pop(a))

cout<<a<<” ”;

And the console displays:

1 3 4 8 9 7 6 5 2 0

Ask: which following results can

cout statements are inserted randomly

programto prove your answer Write

for short

a) 2 4 9 8 7 5 6 3 1 0

b) 321 04 5 6 89 7

c) 0 1 4 3 7 6 8 9 5 2

Question 3:Write a programto convert and decimal

(do not use recursive)

Example:

Input: 23

Output: 10111

Question 4:Use the given methods described in

value greater than mean value of a queue

Example:

Input queue: 1 4 6 8 1

Mean value: 4

Output queue : 1 4

Question 5:Write a program to sort a stack in increasing order using only one extra queue

s.push(5);

s.push(6);

s.push(7);

s.push(8);

if(s.pop(a)) cout<<a<<” ”;

s.push(9);

if(s.pop(a)) cout<<a<<” ”;

if(s.pop(a)) cout<<a<<” ”;

if(s.pop(a)) cout<<a<<” ”;

if(s.pop(a)) cout<<a<<” ”;

if(s.pop(a)) cout<<a<<” ”;

if(s.pop(a)) cout<<a<<” ”;

results can possibly be printed by Stacky, recalling that “Some

randomly after first push statement” And write

to prove your answer Write “s.pop();” instead of “if(s.pop(a)) cout<<a<<” ”;

2 4 9 8 7 5 6 3 1 0

0 1 4 3 7 6 8 9 5 2

Write a programto convert and decimal number into binary number

Use the given methods described in Assumption, write a program

value greater than mean value of a queue

Write a program to sort a stack in increasing order using only one extra queue

if(s.pop(a)) cout<<a<<” ”;

if(s.pop(a)) cout<<a<<” ”;

if(s.pop(a)) cout<<a<<” ”;

recalling that “Some pop and

And write that Stacky if(s.pop(a)) cout<<a<<” ”;”

number into binary number using stack

program to remove all

Write a program to sort a stack in increasing order using only one extra queue

Ngày đăng: 07/06/2016, 20:47

TỪ KHÓA LIÊN QUAN

w