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

The Archive Base Latest Questions

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

I have been working on a DisjointSet assignment in C for a couple days

  • 0

I have been working on a DisjointSet assignment in C for a couple days now. I understand the functions find (w/ and w/o path compression), using rank in the function link when performing the union on a set. But I am having issues with C syntax.

We have to make an array of records containing the rank and the key for the set. so my struct looks as:

typedef struct DisjointSet_t {
  int data;
  int key;
} DisjointSet;

My problem is declaring the array to manipulate the set. There is something wrong with me initializing the array for the set. Here’s the snippet of the CreateSet code:

static DisjointSet *S;

void CreateSet(int numElements){  
  DisjointSet *t;

  if (numElements > 0){
    t = (DisjointSet *)malloc(sizeof(DisjointSet));
    }

  if(S != NULL){
    S = t[numElements+1];
  }  
}

If I implemented this in Java I think it’d be a little easier. How can I improve this? Am I missing something about understanding how to initializing class arrays in C?

  • 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-18T02:11:28+00:00Added an answer on May 18, 2026 at 2:11 am

    Hmmm … with

    malloc(sizeof(DisjointSet))
    

    you reserve space for one object of type DisjointSet. To allocate space for 20 objects you need to multiply …

    malloc(20 * sizeof(DisjointSet))
    

    and, once you have 20 objects, in an array, the array goes from 0 to 19.

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

Sidebar

Related Questions

I have been working with Visual Studio (WinForm and ASP.NET applications using mostly C#)
We have been working with CVS for years, and frequently find it useful to
I have been working as a native C++ programmer for last few years. Now
I have been working on Android for a few months. Now i want to
I have been working using openFrameworks, on a problem that is posted on the
I have been working on a Swing based java program for a while now,
I have been working on an application in Xcode for a while now and
I have been working in Python for a few months now, and it has
I have been working on a web services related project for about the last
I have been working with a string[] array in C# that gets returned from

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.