Execute the following algorithm on given list and find what this algorithm computes? procedure negative(a1, a2, . . . , an: integers) count := 0 for i := 1 to n if ai < 0 then count := count+1 return count{count has total number of negative elements in the list}   2 , - 5 , 6 , -11 , 2 , 7 , - 23 , 4 , -8 , 19   i ai count   1 2     2 -5     3 6     4 -11     5 2     6 7     7 -23     8 4     9 -8     10 19

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18PE
icon
Related questions
Question
  1. Execute the following algorithm on given list and find what this algorithm computes?

procedure negative(a1, a2, . . . , an: integers)

count := 0

for i := 1 to n

if ai < 0 then count := count+1

return count{count has total number of negative elements in the list}

 

2 , - 5 , 6 , -11 , 2 , 7 , - 23 , 4 , -8 , 19

 

i

ai

count

 

1

2

 

 

2

-5

 

 

3

6

 

 

4

-11

 

 

5

2

 

 

6

7

 

 

7

-23

 

 

8

4

 

 

9

-8

 

 

10

19

 

 

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Quicksort
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++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning