Complete this function so that it returns the positions of all negative values in the given vector.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter10: Pointers
Section: Chapter Questions
Problem 2PP
icon
Related questions
Question
Complete this function so that it returns the positions of all negative values in the given vector.
Complete the following file:
numbers.cpp
1 #include <vector>
2 using namespace std;
3
vector<int> negative_positions(vector<double> values)
5 {
4
6.
result;
7
8
return result;
9 }
Submit
Transcribed Image Text:Complete this function so that it returns the positions of all negative values in the given vector. Complete the following file: numbers.cpp 1 #include <vector> 2 using namespace std; 3 vector<int> negative_positions(vector<double> values) 5 { 4 6. result; 7 8 return result; 9 } Submit
Use the following file:
Tester.cpp
#include <iostream>
#include <vector>
using namespace std;
#include "util.h"
int main()
{
vector<double> a;
cout << negative_positions(a) << endl;
cout << "Expected: [ ]" < endl;
a.push_back(3.9);
a.push_back(-1.4);
a.push_back (2.0);
cout << "Checking:
cout << negative_positions(a) << endl;
cout << "Expected: [1]" << endl;
<< a << endl;
a.push_back ( -2.0);
a.push_back (0.0);
cout << "Checking:
cout << negative_positions (a) << endl;
cout << "Expected: [1, 3]" << endl;
<< a << endl;
return 0;
}
Transcribed Image Text:Use the following file: Tester.cpp #include <iostream> #include <vector> using namespace std; #include "util.h" int main() { vector<double> a; cout << negative_positions(a) << endl; cout << "Expected: [ ]" < endl; a.push_back(3.9); a.push_back(-1.4); a.push_back (2.0); cout << "Checking: cout << negative_positions(a) << endl; cout << "Expected: [1]" << endl; << a << endl; a.push_back ( -2.0); a.push_back (0.0); cout << "Checking: cout << negative_positions (a) << endl; cout << "Expected: [1, 3]" << endl; << a << endl; return 0; }
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Lower bounds sorting algorithm
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr