As you know from Discrete Math, a permutation is any possible ordering of the distinct items of a set S. If |S| = n, there are n! permutations. This means that for large sets, it is computationally infeasible to generate all possible permutations. One well-known algorithm for generating set permutations (at least for small sets) is presented below: ALGORITHM Johnson-Trotter(n) // Input: a positive integer n // Output: A list of all permutations of {1, 2, ..., n} initialize the first permutation as 1 2 ... n with directions pointing left while the last permutation has a mobile element find its largest mobile element k swap k and the element to which k is directed reverse the direction of all elements that are larger than k add the new permutation to the list Note: an element is mobile if its direction points to a smaller adjacent element. Example: 1 2 3 13 2 3 1 2 3 2 1 2 3 1 2 1 3 REQUIREMENTS: Design and implement a program to generate all permutations of the set of least n positive integers. INPUT: an integer n with 1 < n < 25. OUTPUT: The tag "There are x permutations of the set {1, 2, ..., n}:", where x = n! a list of all permutations of the set {1, 2, n}, one per line. .... EXAMPLE OUTPUT:

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

IN C++ PROGRAMMING

As you know from Discrete Math, a permutation is any possible ordering of the distinct
items of a set S. If |S| = n, there are n! permutations. This means that for large sets, it is
computationally infeasible to generate all possible permutations. One well-known
algorithm for generating set permutations (at least for small sets) is presented below:
ALGORITHM Johnson-Trotter(n)
// Input: a positive integer n
// Output: A list of all permutations of {1, 2, ..., n}
initialize the first permutation as 1 2
while the last permutation has a mobile element
find its largest mobile element k
swap k and the element to which k is directed
reverse the direction of all elements that are larger than k
add the new permutation to the list
n with directions pointing left
Note: an element is mobile if its direction points to a smaller adjacent element.
Example:
1 2 3
1 3 2
3 1 2
3 2 1
2 3 1
2 1 3
REQUIREMENTS:
Design and implement a program to generate all permutations of the set of least n
positive integers.
INPUT:
an integer n with 1 < n< 25.
OUTPUT:
The tag "There are x permutations of the set {1, 2, ..., n}:", where x = n!
a list of all permutations of the set {1, 2,
n}, one per line.
...
EXAMPLE OUTPUT:
Transcribed Image Text:As you know from Discrete Math, a permutation is any possible ordering of the distinct items of a set S. If |S| = n, there are n! permutations. This means that for large sets, it is computationally infeasible to generate all possible permutations. One well-known algorithm for generating set permutations (at least for small sets) is presented below: ALGORITHM Johnson-Trotter(n) // Input: a positive integer n // Output: A list of all permutations of {1, 2, ..., n} initialize the first permutation as 1 2 while the last permutation has a mobile element find its largest mobile element k swap k and the element to which k is directed reverse the direction of all elements that are larger than k add the new permutation to the list n with directions pointing left Note: an element is mobile if its direction points to a smaller adjacent element. Example: 1 2 3 1 3 2 3 1 2 3 2 1 2 3 1 2 1 3 REQUIREMENTS: Design and implement a program to generate all permutations of the set of least n positive integers. INPUT: an integer n with 1 < n< 25. OUTPUT: The tag "There are x permutations of the set {1, 2, ..., n}:", where x = n! a list of all permutations of the set {1, 2, n}, one per line. ... EXAMPLE OUTPUT:
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 6 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY