


How to generate non-repetitive permutation combinations based on character set and number of layers, and exclude all characters of the same combinations?
Efficient generation of character arrangement and combination: avoid duplication and exclude all the same
This article describes how to generate non-repetitive permutation combinations based on a given character set and number of layers, and effectively exclude combinations where all characters are the same. For example, the character set is 'a' and 'b', which generates a combination of different layers: the first layer is 'a', 'b'; the second layer is 'ab', 'ba' (excluding 'aa', 'bb'); the third layer contains 'aab', 'aba', 'abb', 'baa', 'bab', 'bba', etc.
We will adopt two algorithm strategies: digital replacement method and backtracking method.
Method 1: Digital replacement method (more concise)
This method treats permutations as m-digit numbers. Taking the character set 'a', 'b' as an example, 'a' is 0 and 'b' is 1. Second-layer combination: 00('aa'), 01('ab'), 10('ba'), 11('bb'). Iterate through all m-digit numbers and convert them into character combinations. In order to exclude the same combination, it is determined whether the generated m-digit number can be divisible by (11...1) (the number of 1 is equal to the number of layers m).
Python code example:
def generate_combinations(charset, layers, allow_all_same=False): results = [] n = len(charset) all_ones = sum(n**i for i in range(layers)) for i in range(n**layers): if allow_all_same or i % all_ones != 0: #Exclude combination = "" temp = i for _ in range(layers): combination = charset[temp % n] combination temp //= n results.append(combination) Return results print(generate_combinations('ab', 2)) # ['ab', 'ba'] print(generate_combinations('ab', 2, True)) # ['aa', 'ab', 'ba', 'bb'] print(generate_combinations('ab', 3)) # ['aab', 'aba', 'abb', 'baa', 'bab', 'bba'] print(generate_combinations('abc', 2)) # ['ab', 'ac', 'ba', 'bc', 'ca', 'cb']
Method 2: Backtracking method (easier to understand)
Backtrace is a recursive algorithm that tries all combinations. Add a character to the current combination at each step, and recursively generates longer combinations. Use the flag to determine whether the current combination is the same character, and avoid duplication and the same combination.
Python code example:
def generate_combinations_recursive(charset, layers, allow_all_same=False): results = [] current_combination = [''] * layers def backtrack(index, all_same): if index == layers: if not all_same: results.append("".join(current_combination)) Return for char in charset: current_combination[index] = char backtrack(index 1, all_same and char == current_combination[index - 1] if index > 0 else False) for char in charset: current_combination[0] = char backtrack(1, not allow_all_same) Return results print(generate_combinations_recursive('AB', 2)) # ['AB', 'BA'] print(generate_combinations_recursive('AB', 2, True)) # ['AA', 'AB', 'BA', 'BB'] print(generate_combinations_recursive('AB', 3)) # ['AAB', 'ABA', 'ABB', 'BAA', 'BAB', 'BBA'] print(generate_combinations_recursive('ABC', 2)) # ['AB', 'AC', 'BA', 'BC', 'CA', 'CB']
Both methods can effectively solve the problem, and the choice depends on specific needs and preferences. The digital replacement method is simpler, and the backtracking method is easier to understand and expand.
The above is the detailed content of How to generate non-repetitive permutation combinations based on character set and number of layers, and exclude all characters of the same combinations?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

VS Code can be used to write Python and provides many features that make it an ideal tool for developing Python applications. It allows users to: install Python extensions to get functions such as code completion, syntax highlighting, and debugging. Use the debugger to track code step by step, find and fix errors. Integrate Git for version control. Use code formatting tools to maintain code consistency. Use the Linting tool to spot potential problems ahead of time.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

VS Code extensions pose malicious risks, such as hiding malicious code, exploiting vulnerabilities, and masturbating as legitimate extensions. Methods to identify malicious extensions include: checking publishers, reading comments, checking code, and installing with caution. Security measures also include: security awareness, good habits, regular updates and antivirus software.

Running Python code in Notepad requires the Python executable and NppExec plug-in to be installed. After installing Python and adding PATH to it, configure the command "python" and the parameter "{CURRENT_DIRECTORY}{FILE_NAME}" in the NppExec plug-in to run Python code in Notepad through the shortcut key "F6".

VS Code not only can run Python, but also provides powerful functions, including: automatically identifying Python files after installing Python extensions, providing functions such as code completion, syntax highlighting, and debugging. Relying on the installed Python environment, extensions act as bridge connection editing and Python environment. The debugging functions include setting breakpoints, step-by-step debugging, viewing variable values, and improving debugging efficiency. The integrated terminal supports running complex commands such as unit testing and package management. Supports extended configuration and enhances features such as code formatting, analysis and version control.
