Write a function named listReplace that takes 3 arguments: list1, tuple1, and tuple2. The function then searches for entries of tuple1 in list1 and replaces them with the corresponding entries in tuple2 and returns the new list. For example, listReplace( [1,2,3,2,4,1,5], (1,2), (7,8)) will return the following list, replacing all 1s in list1 with 7, and all 2s with 8: [7,8,3,8,4,7,5] Be carefull the following call listReplace( [1,1,1,8,0,0], (1,0), (0,2) ) should return [e,0,0,2,2,2] and not [2,2,2,2,2, 2]. Also listReplace([1,1,1], (,2), (4,5)) returns the original list, because 0 and 2 do not exist in list1

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
Write a function named listReplace that takes 3 arguments: list1, tuple1, and tuple2. The function then searches for entries of tuple1 in list1 and replaces them
with the corresponding entries in tuple2 and returns the new list. For example,
listReplace( [1,2,3,2,4,1,5], (1,2), (7,8)) will return the following list, replacing all 1s in list1 with 7, and all 2s with 8: [7,8,3,8,4,7,5]
Be carefull the following call
listReplace( [1,1,1,8,0,0], (1,0), (e,2) )
should return [0,0,0,2,2,2] and not [2,2,2,2,2,2].
Also listReplace ([1,1,1], (0,2), (4,5)) returns the original list, because 0 and 2 do not exist in list1.
Transcribed Image Text:Write a function named listReplace that takes 3 arguments: list1, tuple1, and tuple2. The function then searches for entries of tuple1 in list1 and replaces them with the corresponding entries in tuple2 and returns the new list. For example, listReplace( [1,2,3,2,4,1,5], (1,2), (7,8)) will return the following list, replacing all 1s in list1 with 7, and all 2s with 8: [7,8,3,8,4,7,5] Be carefull the following call listReplace( [1,1,1,8,0,0], (1,0), (e,2) ) should return [0,0,0,2,2,2] and not [2,2,2,2,2,2]. Also listReplace ([1,1,1], (0,2), (4,5)) returns the original list, because 0 and 2 do not exist in list1.
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Linked List Representation
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