1. The General Market is Down This is for the most part the most evident reason that a stock is underestimated and happens when the large scale perspective of the economy is poor. It is helpful for financial specialists to have some fundamental apparatuses to esteem the general market so they can get ready as the market progresses toward becoming underestimated.
Answer:
C++ code given below with appropriate comments
Explanation:
pattern.cpp
#include<iostream>
using namespace std;
void printCross(int n)
{
int i,j,k;
if(n%2) //odd number of lines
{
for(int i=n;i>=1;i--)
{
for(int j=n;j>=1;j--)
{
if(j==i || j==(n-i+1))
cout<<j;
else
cout<<" ";
}
cout<<"\n";
}
}
else //even number of lines
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(j==i || j==(n-i+1))
{
cout<<" "<<j<<" ";
}
else
cout<<" ";
}
cout<<"\n";
}
}
}
void printForwardSlash(int n)
{
if(n%2)
{
for(int i=n;i>=1;i--)
{
for(int j=n;j>=1;j--)
{
if(j==n-i+1)
{
cout<<j;
}
else
cout<<" ";
}
cout<<"\n";
}
}
else
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(j==(n-i+1))
{
cout<<j;
}
else
cout<<" ";
}
cout<<"\n";
}
}
}
void printBackwardSlash(int n)
{
if(n%2) // odd number of lines
{
for(int i=n;i>=1;i--)
{
for(int j=n;j>=1;j--)
{
if(j==i)
{
cout<<j;
}
else
cout<<" ";
}
cout<<"\n";
}
}
else //even number of lines
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(j==i)
{
cout<<j;
}
else
cout<<" ";
}
cout<<"\n";
}
}
}
int main()
{
int num;
char ch;
cout<<"Create a numberes shape that can be sized."<<endl;
cout<<"Input an integer [1,50] and a character [x,b,f]."<<endl;
cin>>num>>ch;
if(ch=='x' || ch=='X')
printCross(num);
else if(ch=='f' || ch=='F')
printForwardSlash(num);
else if(ch=='b' || ch=='B')
printBackwardSlash(num);
else
cout<<"\nWrong input"<<endl;
return 0;
}
Answer:
linkedListOperations = linkedListLibrary.InsertSorted(currNode, linkedListOperations); // this is right
linkedListLibrary.InsertSorted(currNode, linkedListOperations); // half right, it count how much operation but it doesn't store it anywhere in main.
vectorOperations = vectorLibrary.InsertSorted(tempBook, vectorOperations); // this is right
vectorLibrary.InsertSorted(tempBook, vectorOperations); // half right, it count how much operation but it doesn't store it anywhere in main.
cout << "Number of linked list operations: " << linkedListOperations << endl;
cout << "Number of vector operations: " << vectorOperations << endl;
Explanation:
The first, you are calling InsertSorted with linkedListLibrary and than you can store the number of operation inside the "linkedListOperations" variable. Then you do the same with vectorLibrary.