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 7181663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:36:18+00:00 2026-05-28T17:36:18+00:00

I was writing a program where I have to remove all the consecutive repeated

  • 0

I was writing a program where I have to remove all the consecutive repeated occurance of a sub-string in increasing order of length starting at 1.

For example if string is “abcabeccced”.
After removing repeated sub-string of length 1: “abcababceccced” –> “abcababceced” (2 ‘c’ are removed)
After removing repeated sub-string of length 2: “abcababceced” –> “abcabceced” (substring “ab” is removed)
and so on…

Can someone suggest an efficient code for this or even a idea how to do it?

  • 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-28T17:36:18+00:00Added an answer on May 28, 2026 at 5:36 pm

    This is untested pseudo code, but you’re looking to do something like this:

     void crunch(char *str)
     {
       for (n=1; n<10; n++)
       {
         ptr = str;
         while (*ptr != '\0')
         {
           while (strncmp(ptr, ptr + n, n) == 0)
             strcpy(ptr, ptr + n);
           ptr++;
         }
       }
     }
    

    It could be optimized better, but, I choose to optimize the pseudo code to get the idea across. The problems with this code are:

    • It’s inefficient because it uses strcpy (a src, dst pointer pair would be better)
    • The ptr loop goes to the end of the string, we could abort earlier
    • There’s a hard coded limit of 10 in there, this could be generalized
    • This function overwrites the memory pointed to by str, whereas a copy may be better
    • (EDIT) Change inner if to an inner while to ‘crunch’ repeated sequences.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a program where I have a JFrame and I want to remove
We're writing an SDK for a CAD program and have run into a slight
Im writing a program that should read input via stdin, so I have the
Solution for writing a program for keep secret photos. I have many secret photos
I have tried the following program for writing the contents into Spreadsheet. I downloaded
I have Virtual PC 2007. I am writing a C# program that will run
I'm writing an MPI C program. I have troubles debugging it, because whenever I
I have a table that contains log entries for a program I'm writing. I'm
I am writing a desktop and j2me application. I have debug statements in program.
I'm starting to learn about COBOL. I have some experience writing programs that deal

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.