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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T16:10:06+00:00 2026-06-11T16:10:06+00:00

I have a structure consisting of two elements char *word and int number .

  • 0

I have a structure consisting of two elements char *word and int number. When I want to sort them using bubble sort, I have to write exchange parts for both of them:

int i,j,tmp;
    char * temp;
    for(i=0; i<max;i++)
    {
        for(j=0;j<max-i;j++)
        {
            if(strcmp(array[j].word,array[j+1].word)>0)
            {
                temp=array[j].word;
                array[j].word=array[j+1].word;
                array[j+1].word=temp;
                tmp=array[j].number;
                array[j].number=array[j+1].number;
                array[j+1].number=tmp;

            }
        }
    }

EDIT My struct declaration

typedef struct{
    char *word;
    int number;
}
words;
words *array=NULL;

What if I had n elements in the array ? That would be very time consuming to exchange everything. Is there any way to omit this?

OF COURSE except for other sorting algorithms, which I don’t want to use (like qsort).

  • 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-06-11T16:10:07+00:00Added an answer on June 11, 2026 at 4:10 pm
    int i, j, tmp;
    words temp;
    
    for (i = 0; i < max; i++)
    {
        for (j = 0; j < max - i; j++)
        {
            if (strcmp(array[j].word, array[j + 1].word) > 0)
            {
                memcpy(&temp, array[j], sizeof(words));
                memcpy(array[j], array[j + 1], sizeof(words));
                memcpy(array[j + 1], &temp, sizeof(words));
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a structure consisting of cells. I want to remove all white spaces
I have huge amont of geographic data represented in simple object structure consisting only
I have a structure: typedef struct stock { const char* key1p2; // stock code
I have a simple record structure consisting of a header (H) and a list
I have structure(A) and it takes another structure(B) as member. Now i want structure
(Visual) C++ world. I have a tree structure, want to visualize it. More specifically:
I have a database consisting of a large number of images (several million) and
I have a class library containing several structures each consisting of several value and
I have structure like this. <ul class=gallerylist> <li> <image ...> <input ...> </li> <li>
I have menu structure as show here . All item have a background img.

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.