Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Yo. I have this extremely simple swap function that seems to not work. Probably a pointer issue so any advice would be nice.

void swap(pQueue *h, int index1, int index2) {
  student *temp = &h->heaparray[index1];
  h->heaparray[index1] = h->heaparray[index2];
  h->heaparray[index2] = *temp;    
}

pQueue is a heap pointer, index1 and index2 are guaranteed to be valid indices.

student *temp does get the value of heaparray[index1] but when heaparray[index2] is assigned the temp value, the heaparray[index2] stays the same. Any advice appreciated.

share|improve this question

2 Answers

up vote 5 down vote accepted

You need to copy the actual value of h->heaparray[index1] (not its address) into temp and then later copy that value into h->heaparray[index2], like so:

void swap(pQueue *h, int index1, int index2) {
  student temp = h->heaparray[index1];
  h->heaparray[index1] = h->heaparray[index2];
  h->heaparray[index2] = temp;    
}
share|improve this answer
Ah that does the trick. Thanks! – Paha Apr 17 '12 at 2:46
1  
@Paha Please accept the answer if it solved your problem. – Aaron Dufour Apr 17 '12 at 3:07

*temp doesn't get the value of heaparray[index1], it gets its address.

share|improve this answer
So how do I get the node to physically transfer? – Paha Apr 17 '12 at 2:08
Actually, *temp does get the value; it's temp that gets the address. – jwodder Apr 17 '12 at 2:35
This is true.. I tested it and I can call all the values of the node. So why doesn't the temp assignment work? – Paha Apr 17 '12 at 2:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.