Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Two rather straight foward C++ questions need some answer and explanation. Please try to use simple C++ code and comment on your logic, these questions

Two rather straight foward C++ questions need some answer and explanation.

Please try to use simple C++ code and comment on your logic, these questions are sample questions for my upcoming test and I really need to know how to solve similar problems! Thank you!

1. Assume that Stack is the stack class implemented by a static array, with data type is set to int and stack capacity is 5. Give the contents of the myTop and myArray data members of s after the code segment is executed, or indicate why an error occurs.

Stack s;

for (int i = 0; i < 2; i++)

s.push(2*i);

int i = s.top();

s.pop();

2. Write a function to find the sum of all integers stored in the linked list. The first node is pointed to by a Node pointer "first"

class Node {

public:

int data;

Node * next;

}

Your codes: int sum(Node * first )

{

//Implement the code here.

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Machine Performance Modeling Methodologies And Evaluation Strategies Lncs 257

Authors: Francesca Cesarini ,Silvio Salza

1st Edition

3540179429, 978-3540179429

More Books

Students also viewed these Databases questions

Question

Complexity of linear search is O ( n ) . Your answer: True False

Answered: 1 week ago

Question

Understand why customers are loyal to a particular service firm.

Answered: 1 week ago