473,473 Members | 1,581 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Pointers, structs and memory allocations

Hi, I'm a C-newbie and I would like to know if I am doing something
wrong in the code below. It is working, but I'm afraid it might not be
correct because I don't really understand everything of it. There are
lots of pointers and pointers to pointers which makes me confused.

First my typedef:

typedef struct
{
double re;
double im;
} cplx;

What I need to do first is to allocate memory to hold N pointers to
cplx. I do it with this statement (correct or not?):

cplx **data = (cplx **)malloc(sizeof(cplx *) * N);
if(!data) { /* malloc failed */ ... }

Next I need to malloc space for each struct in the list and fill it
with data. This is what I do (correct or not?):

for(i = 0; i < N; i++)
{
data[i] = (cplx *)malloc(sizeof(cplx));
data[i]->re = i; /* fill with testdata */
data[i]->im = N - i - 1; /* fill with testdata */
}

Then I will call a rearrange-function to rearrange the _pointers_ and
_not_ the data in the array. The function looks like this:

void rearrange(cplx **data, int n_elements)
{
cplx *tmp;
int i;

/* reverse the data */
for(i = 0; i < (n_elements / 2); i++)
{
tmp = data[i];
data[i] = data[n_elements - i - 1];
data[n_elements - i - 1] = tmp;
}
}

I call this function from main() the following way (correct or not?):

rearrange(data, N);

And finally clean up the memory (correct or not?):

for(i = 0; i < N; i++)
free(data[i]);

free(**data);

Finally, is this the right approach if you got a large list of structs
to be rearranged? I guess it's much faster swapping pointers than
swapping the entire data in the structs?
Nov 13 '05 #1
3 2143
On Tue, 11 Nov 2003 05:28:31 -0800, Christian F wrote:
typedef struct
{
double re;
double im;
} cplx;
cplx **data = (cplx **)malloc(sizeof(cplx *) * N); if(!data) { /* malloc
failed */ ... }
Don't cast malloc. It can hide errors, if you've included stdlib.h the
casting is unnesseary.

for(i = 0; i < N; i++)
{
data[i] = (cplx *)malloc(sizeof(cplx));
Again don't cast malloc.
data[i]->re = i; /* fill with testdata */ data[i]->im = N - i - 1; /*
fill with testdata */
}
And finally clean up the memory (correct or not?):

for(i = 0; i < N; i++)
free(data[i]);
Correct.

free(**data);
Not! use:
free(data);

Finally, is this the right approach if you got a large list of structs
to be rearranged? I guess it's much faster swapping pointers than
swapping the entire data in the structs?


Probably yes, if the goal is speed.

Otoh this requires sizeof(cplx*) * N
bytes of extra memory. If N is suficciently large that may be what pushes
your program over the edge to using swap space, resulting in lower overall
speed.
But for most cases the size of the pointerarray would be overshadowed by
the size of the struct so I wouldn't worry about it. But if you vere
reversing an array of ints the pointer array would be a waste.

--
NPV

"the large print giveth, and the small print taketh away"
Tom Waits - Step right up

Nov 13 '05 #2
On Tue, 11 Nov 2003 14:04:06 +0000, Nils Petter Vaskinn wrote:
On Tue, 11 Nov 2003 05:28:31 -0800, Christian F wrote:

Finally, is this the right approach if you got a large list of structs
to be rearranged? I guess it's much faster swapping pointers than
swapping the entire data in the structs?


Probably yes, if the goal is speed.


Just struck me:

For an array of pointers you do N mallocs and 2N copy operations on
pointers.

For an arrray of structs you do 1 malloc (sizeof(cplx)*N) and 2N copy
operations on the struct data.

In this case it all comes down to the speed of your malloc implementation
vs the speed of the copy operations.

Another alternative:

cplx *realData = malloc(sizeof(cplx)*N);
cplx **data = malloc(sizeof(cplx*)*N);

for(int i=0; i<N; ++i) {
data[i] = realData + i;
}

This gives 2 malloc operations and 3N copy operations on pointers.
The way to know which is faster is to profile all three.

--
NPV

"the large print giveth, and the small print taketh away"
Tom Waits - Step right up

Nov 13 '05 #3
Christian F <kh***@telia.com> wrote:
Hi, I'm a C-newbie and I would like to know if I am doing something
wrong in the code below. It is working, but I'm afraid it might not be
correct because I don't really understand everything of it. There are
lots of pointers and pointers to pointers which makes me confused.

First my typedef:

typedef struct
{
double re;
double im;
} cplx;
Though the above is syntactically correct, IMHO it brings you no good.
Hiding structs behind typedefs is only a good idea if the struct needs
to be camouflaged somehow. That is, programs use an abstract type they
do not have to know in depth (like for example the type FILE).

It is arguable that a complex-type should be abstracted to the user, but
on the other hand it should not for the part of the program that works
with the contents of such a struct.

I usually stick to the conservative

struct cplx {...};

..

What I need to do first is to allocate memory to hold N pointers to
cplx. I do it with this statement (correct or not?):

cplx **data = (cplx **)malloc(sizeof(cplx *) * N);
Casting malloc is a no no, especially in this newsgroup. If you have the
appropriate prototype for malloc in place, there is no need to cast its
return value at all. malloc returns a generic pointer, which can be
converted without a cast to any other object pointer type. So if you are
getting diagnostic messages from you compiler, that is rather due to
failure to include tha correct header file (stdlib.h), that to a missing
cast.

Some people argue that in C++ you'ld need cast mallocs return value, but
who would ever want to compile a C program with a C++ compiler? And if
one is programming in C++, why would one use malloc at all? ...

Also I recommend to apply sizeof to an object rather than a type, so
when you change the type of data, there will be no need to change the
malloc call:

struct cplx **data = malloc(sizeof *data * N);

Btw, if N is meant to be constant, I don't see the need to use malloc
at all, but I think this is going to be a parameter of some kind.

if(!data) { /* malloc failed */ ... }

Next I need to malloc space for each struct in the list and fill it
with data. This is what I do (correct or not?):

for(i = 0; i < N; i++)
{
data[i] = (cplx *)malloc(sizeof(cplx));
As explained above:
data[i] = malloc(sizeof *data[i]);
data[i]->re = i; /* fill with testdata */
data[i]->im = N - i - 1; /* fill with testdata */
}

Then I will call a rearrange-function to rearrange the _pointers_ and
_not_ the data in the array. The function looks like this:

void rearrange(cplx **data, int n_elements)
{
cplx *tmp;
int i;

/* reverse the data */
for(i = 0; i < (n_elements / 2); i++)
{
tmp = data[i];
data[i] = data[n_elements - i - 1];
data[n_elements - i - 1] = tmp;
}
}

I call this function from main() the following way (correct or not?):

rearrange(data, N);

And finally clean up the memory (correct or not?):

for(i = 0; i < N; i++)
free(data[i]);
That is ok!

free(**data);
But this one is not. Guess why!

free(data);

Finally, is this the right approach if you got a large list of structs
to be rearranged? I guess it's much faster swapping pointers than
swapping the entire data in the structs?


It depends one the size of the list. It is probably the right approach
for lists that are pretty short (like less than say 1000 elements). At
some point you may recognize that there need to be better ways of doing,
but that is another story... which is better discussed elsewhere.
--
Z (Zo**********@daimlerchrysler.com)
"LISP is worth learning for the profound enlightenment experience
you will have when you finally get it; that experience will make you
a better programmer for the rest of your days." -- Eric S. Raymond
Nov 13 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

27
by: Susan Baker | last post by:
Hi, I'm just reading about smart pointers.. I have some existing C code that I would like to provide wrapper classes for. Specifically, I would like to provide wrappers for two stucts defined...
3
by: Sameh Halabi | last post by:
Hi I have a strange problem in C , I hope someone may help with it . the problem is as follows : I have an existing big structure (that I can't change) which contains in it groups of...
388
by: maniac | last post by:
Hey guys, I'm new here, just a simple question. I'm learning to Program in C, and I was recommended a book called, "Mastering C Pointers", just asking if any of you have read it, and if it's...
47
by: sunglo | last post by:
Some time a go, in a discussion here in comp.lang.c, I learnt that it's better not to use a (sometype **) where a (void **) is expected (using a cast). Part of the discussion boiled down to the...
5
by: Paminu | last post by:
Why make an array of pointers to structs, when it is possible to just make an array of structs? I have this struct: struct test { int a; int b;
3
by: _TR | last post by:
I love C# and I've been porting a lot of my older C++ code, but there is one app that I haven't quite figured out yet. I suppose I could re-engineer the app from the ground up, but I've already...
17
by: Johan Tibell | last post by:
Could someone outline the pros and cons of typedefing pointers to structs like this? typedef struct exp_ { int val; struct exp_ *child; } *exp; (This is straight from memory so it might not...
19
by: Name and address withheld | last post by:
I am trying to understand how ustr (http://www.and.org/ustr/design) works. Its a string-handling library for C, and it stores strings in the following struct, called a "magic struct" struct Ustr...
2
by: hal | last post by:
Hi, I'm trying to make an array of pointers to 'TwoCounts' structs, where the size of the array is arraySize. Right now I'm just mallocing enough space for all the pointers to the structs, and...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.