Problem Solving with C++ (10th Edition)
Problem Solving with C++ (10th Edition)
10th Edition
ISBN: 9780134448282
Author: Walter Savitch, Kenrick Mock
Publisher: PEARSON
Question
Book Icon
Chapter 14, Problem 8PP
Program Plan Intro

Finding all permutations for a set

Program Plan:

  • Include required file.
  • Define the structure for node.
    • Declare elements in “vector” type.
    • Declare variable for next value in “NodeValue” type.
  • Declare function for display permutations.
  • Declare function for compute permutations with recursively.
  • Declare function for display vector elements of set.
  • Define main function.
    • Call the function “displayPermutations” with one parameter.
  • Define function “displayPermutations”.
    • Create a pointer for node.
    • Declare the set in “vector” type.
    • Fill the set with first “n” whole elements.
    • Call the function “displayVectorElements” to print the vectors.
    • Then compute the permutation for given set by calling the function “recursivePermutations”.
    • Performs “while” loop. This loop executes until the pointer is equal to “NULL”.
      • Display the values in set by calling the function “displayVectorElements”.
      • Then delete and move to the next value.
  • Define function “recursivePermutations”.
    • This function is used to returns a list holding all of the permutations of the given list of elements.
    • In this function, first assign the pointer list to “NULL”.
    • Then performs base case if the size of the vector element is “1”. Otherwise performs recursive case.
    • Compute the permutations for smaller set of elements by recursively call the function “recursivePermutations”.
  • Define function “displayVectorElements”.
    • This function is used to display the elements of set.

Blurred answer
Students have asked these similar questions
We are considering the RSA encryption scheme. The involved numbers are small, so the communication is insecure.  Alice's public key (n,public_key) is (247,7). A code breaker manages to factories  247 = 13 x 19  Determine Alice's secret key. To solve the problem, you need not use the extended Euclid algorithm, but you may assume that her private key is one of the following numbers 31,35,55,59,77,89.
Consider the following Turing Machine (TM). Does the TM halt if it begins on the empty tape? If it halts, after how many steps? Does the TM halt if it begins on a tape that contains a single letter A followed by blanks? Justify your answer.
Pllleasassseee ssiiirrrr soolveee thissssss questionnnnnnn
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education