search
HomeBackend DevelopmentC++Python program to generate Lyndon words of length n
Python program to generate Lyndon words of length nAug 31, 2023 pm 09:29 PM
pythongeneratelength

Python program to generate Lyndon words of length n

In this question we will find all Lyndon words using an array of alphanumeric characters.

Before we begin, let us first understand the definition of the word Lyndon.

  • All words are Lyndon words, strictly lexicographically smaller than all their cycles.

The following are examples of Lyndon words.

  • ab - "ab" is strictly lexicographically smaller than all its permutations "ba".

  • 89 - The rotation of ‘89’ is ‘98’, which is strictly lexicographically greater than ‘89’.

  • abc - The rotations of 'abc' are 'bca' and 'cab', which are strictly larger than 'abc'.

The following are examples of non-Lyndon words.

  • aaa - aaa is a non-Linden word because all rotations of "aaa" are the same.

  • bca - 'bca' is a non-Linden word because 'abc' has a smaller rotation than it,

Problem Statement- We are given a character array of length K containing alphanumeric characters. Additionally, we are given n containing positive integers. The task is that we need to find all the Lyndon words of length n using the alphanumeric characters given in the array.

Example

enter

chars = ['1', '3', '2'], n = 3

Output

112, 113, 122, 123, 132, 133, 223, 233

Explanation- It generates all Lydon words of length 3 using array characters.

enter

 n = 2, chars = ['1', '0']

Output

01

Explanation - "01" is the only Lyndon word we can use 0 and 1 to form.

enter

 n = 2, chars = ['c', 'a', 'd']

Output

ac, ad, cd

Explanation- It generates Lyndon words of length 2 using a, c and d characters.

method 1

We have a special algorithm to generate Linden words, called Duval's algorithm.

algorithm

Step 1 - Define the "n" value that represents the length of the Lyndon word and the chars array containing the characters to be used when creating the Lyndon word.

Step 2- Sort the list.

Step 3 − Initialize the "index" list with −1.

Step 4- Iterate until the index list is not empty.

Step 5 - Increase the last element of the "index" list by 1.

Step 6− If list_size is equal to n, print the list value.

Step 7 - Append the index to the list so that its length is equal to n.

Step 8 - If the last element of the list is equal to the last index of the array, remove it from the list.

Example

Let's understand the example with example input.

  • The sorted list will be ['a', 'c', 'd'].

  • The index list will be updated from [−1] to [0] on the first iteration. After that, the length of the index is equal to 2 and becomes [0, 0].

  • On the second iteration, the list is updated to [0, 1] and we find the first Lyndon word "ac".

  • On the third iteration the list will become [0, 2] and the second Lyndon word is "ad". Also, the last element is removed from the list because it is equal to array_len -1.

  • On the fourth iteration, the list will become [1]. [1, 1] will be updated later.

  • On the next iteration the list becomes [1, 2], and we find the third Lyndon wor, ''cd'.

# Input
n = 2
chars = ['c', 'a', 'd']

# sort the list
initial_size = len(chars)
chars.sort()

# Initializing the list
indexes = [-1]

print("The Lyndon words of length {} is".format(n))

# Making iterations
while indexes:
    # Add 1 to the last element of the list
    indexes[-1] += 1
    list_size = len(indexes)

# If the list contains n characters, it means we found a Lyndon word
    if list_size == n:
        print(''.join(chars[p] for p in indexes))

    # Make the list size equal to n by adding characters
    while len(indexes) < n:
        indexes.append(indexes[-list_size])

    while indexes and indexes[-1] == initial_size - 1:
        indexes.pop()

Output

The Lyndon words of length 2 is
ac
ad
cd

Time complexity− O(nlogn), because we need to sort the "character" list first.

Space complexity− O(n) since we store n indexes in the list.

The Duval algorithm is the most efficient way to generate Lyndon words of length n. However, we have customized the method to only use array characters.

The above is the detailed content of Python program to generate Lyndon words of length n. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor