Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4556940
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T17:26:15+00:00 2026-05-21T17:26:15+00:00

I want to create wordlists with different word length. my src for… length=1: for(int

  • 0

I want to create wordlists with different word length. my src for…

length=1:

for(int a=97;a<=122;a++)
   String foo=String.valueOf((char)a);

length=2:

for(int a=97;a<=122;a++)
    for(int b=97;b<=122;b++) 
       String foo=String.valueOf((char)a+""+(char)b);

Any ideas how to improve this code so it is independent of the actual string length?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T17:26:16+00:00Added an answer on May 21, 2026 at 5:26 pm

    As Tejs suggests, you’ll want to use recursion. You can’t write loops to have dynamic depth, but you can recurse to any level you want (at least until you run out of stack space):

    //Pseudocode!
    void generate(dictionary, string, depth)
    {
        if(depth == 0)
        {
            dictionary.add(string);
        }
        else
        {
            for(char c = 'a'; c <= 'z'; ++c)
            {
                generate(dictionary, string + c, depth - 1);
            }
        }
    }
    

    Just start if off like:

    dictionary = new Dictionary;
    generate(dictionary, '', depth);
    

    and you’re off. If you want to include all strings up to the desired length, it’s an easy tweak – just always add the string to the dictionary, but only recurse if the current depth is greater than zero.

    Hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a class with a nested enum. public class Foo {
I want create texture atlas(matrix of images) from multiple images.Is their any applescript that
I want create Word document from another Word document, but I need replace some
i want create XML file here is my following code String fileName = jasstech.xml;
I want create a rest method(http put) that takes a list of string as
I want create connection string in web.config file with CredentialCache.DefaultCredentials , it's possible and
I have following string. $option = '+'; $value = '100'; I want create new
I want create a excel with Apache POI in java and I must insert
i want create image animation , i have 50 images with png format now
I want create module which update list of usb devices automatically (not only mass

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.