Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
3answers
40k views

How to declare a structure in a header that is to be used by multiple files in c?

If I have a source.c file and it uses a structure like struct a { int i; struct b { int j; } }; if this structure is to be used by some other file func.c how to do it? ...
10
votes
4answers
239 views

More linked lists in C

Before I begin I want to make it clear that I don't want the the answer to my HOMEWORK problem, I would just like if someone could actually explain what exactly my instructor is asking for in this ...
10
votes
16answers
1k views

Is it compulsory to learn about Data Structures if you want to be a Java/C++ programmer?

So do I like really need to learn about them ? Isn't there an interesting way to learn about stacks, linked lists, heaps ,etc ? I found it a boring subject. **While posting this question it showed ...
9
votes
3answers
779 views

initialization of anonymous structures or unions in C1X

I have the following question: How are anonymous structures (or unions) properly initialized according to the current C1X draft? Is this legal: struct foo { int a; struct { int i; ...
8
votes
1answer
323 views

Anonymous Structures in C found in Unix Kernel

I have started reading the Lions Commentary on Unix v6. I came across these snippets, which I have never seen used in the C language. The author does provide some sort of an explanation, but could ...
8
votes
2answers
274 views

What is the use of declaring anonymous structures within a structure?

What is the use of defining a anonymous structure within a structure? When should this concept be used?
7
votes
3answers
184 views

Data Structure for representing patterns in strings

I'm looking for a good data structure to represent strings of the form: Domain:Key1=Value1,Key2=Value2... Each "Domain" can contain the following pattern characters - *, ? (* - 0 or more ...
7
votes
8answers
916 views

C# / .NET : when structures are better than classes?

Duplicate of: When to use struct in C#? Are there practical reasons to use structures instead of some classes in Microsoft .NET 2.0/3.5 ? "What is the difference between structures and classes?" - ...
6
votes
2answers
221 views

What data structure to use / data persistence

I have an app where I need one table of information with the following fields: field 1 - int or char field 2 - string (max 10 char) field 3 - string (max 20 char) field 4 - float I need the ...
6
votes
2answers
200 views

How to resolve two structures with the same name?

In my code base I find that two modules have structures with the same name. It is giving a name conflict error. Is there a way to resolve it without changing the code?
5
votes
3answers
9k views

How do I access MATLAB structure fields within a loop?

I have a structure with many fields which are vectors of different lengths. I would like to access the fields within a loop, in order. I tried getfield as follows but MATLAB doesn't like that. How can ...
5
votes
3answers
6k views

How to initialize nested structures in C++?

I have created a couple of different structures in a program. I now have a structure with nested structures however I cannot work out how to initalize them correctly.The structures are listed below. ...
4
votes
2answers
303 views

zero length arrays

Recently I came across a structure definition, struct arr { int cnt; struct { int size; int *name; } list[0]; }; and now I don't know the reason for list[0] being ...
4
votes
2answers
193 views

How can I declare a pointer structure using {}?

This probably is one of the easiest question ever in C programming language... I have the following code: typedef struct node { int data; struct node * after; struct node * before; }node; ...
4
votes
4answers
205 views

Why some libraries must implement basic data structure?

Some open source libraries have tendency to re implement basic structures like string, list, stack, queue... Why don't they use stl library? Is stl not good enough?
3
votes
4answers
130 views

When should we not use #pragma pack?

In C, when we use structures, when would it be inappropriate to use #pragma pack directive..? an addition to the question..... Can someone please explain more on how might the accessing of unaligned ...
3
votes
1answer
100 views

Netcdf and fortran structures

I have this fortran structure. type custom real :: a,b real,dimension(20) ::c,d real,dimension(20,50) :: e end type custom Then I have another structure like this type custom2 ...
3
votes
2answers
86 views

Structures definition problem in C

I have a few structures with cross-pointers in my program, they are defined like this: typedef struct { ... struct myvar *next; struct myvar *prev; ... } myvar; typedef struct { ... myvar ...
3
votes
3answers
293 views

Is there a comprehensive Big-O listing of Java data structures?

Question pretty much says it all. Specifically, I would like the Big-O of all the methods within a structure, aside from the usual. The docs say very little about this. Addennum For those who are ...
3
votes
3answers
242 views

Do programmers should train in ACM-contests? [closed]

A lot of those coders, who are succeed contests like TopCoder SRMs, or Google Codejam, etc., get good jobs and salary. But is it really neccesary? I mean, do all code developers should know different ...
3
votes
6answers
597 views

Is there a way to access individual bits with a union?

I am writing a C program. I want a variable that I can access as a char but I can also access the specific bits of. I was thinking I could use a union like this... typedef union { unsigned char ...
3
votes
3answers
332 views

Structures and Unions in C, determining size and accessing members

All, Here is an example on Unions which I find confusing. struct s1 { int a; char b; union { struct { char *c; long d; } long e; ...
3
votes
4answers
140 views

migrating C++ code from structures to classes

I am migrating some C++ code from structures to classes. I was using structures mainly for bit-field optimizations which I do not need any more (I am more worried about speed than saving space now). ...
3
votes
2answers
805 views

Is there an easy way to make a min heap in C++?

I'm very new to C++, and I was wondering if there was a way to make a min heap in C++ from the standard library. Thanks,
3
votes
4answers
225 views

Why does forward declaration not work with classes?

int main() { B bb; //does not compile (neither does class B bb;) C cc; //does not compile struct t tt; //compiles ...
3
votes
4answers
3k views

Defining a Structure in C with Malloc

I asked a question earlier on defining a structure using malloc. This was the answer I was given by the majority: struct retValue* st = malloc(sizeof(*st)); I was showing a friend my code, and we ...
3
votes
8answers
426 views

What does this C error about structures mean?

Hey everyone! Could someone please help me understand this error in C for structures? This is my code: struct Orientation { char facing; char sensor; char mazeDir; }; struct Orientation ...
2
votes
6answers
116 views

Abstract/Base struct in C++?

I'm making a chess game and I would like to have an array of pieces. If I'm correct, in Java you can have an abstract Piece class and have King or Queen extend that class. If I were to make an ...
2
votes
3answers
90 views

Using structs to access arrays in C

I understand how to create a struct that can be used to access an array, for example: #include <stdio.h> typedef struct { int i; int j; int k; } MyStruct; int main() { MyStruct *ms; ...
2
votes
2answers
39 views

In a data structure designed for efficiency, if you often use a temporary int or float, is it best to make it a field?

A little more background, I have a data structure that when removing or adding or simply retrieving I temporarily use a float as temporary storage in the methods. Instead of asking for a new spot in ...
2
votes
1answer
26 views

Name of memory limited stack?

I've been searching for this to no avail, perhaps it's not really a "thing". Is there a specific name given to stacks that are limited in size where it does not matter if values are dropped? This ...
2
votes
1answer
113 views

Table of structures

typedef struct s_coord { int ax; int ay; int bx; int by; int cx; int cy; int dx; int dy; } t_coord; typedef struct s_piece { ...
2
votes
2answers
193 views

c++ array of pointers to structures

I have a program that has to find the shortest path (Dijkstra's algorithm) and I have decided to use an array of pointers to structures, and i keep getting this error: In function ‘void ...
2
votes
3answers
136 views

Freeing Static Structures in C Library

A project I am working on involves a flight vehicle with GNC code written in a C library (.out). We must call this C code from LabVIEW (the primary avionics software) in the form of a .out library, ...
2
votes
1answer
88 views

Don't understand this BT example algorithm

In the deletion code from here. I don't understand the first snippet of deletion code (where the node does not have two children). If the node being deleted has a parent and a child itself (i.e. the ...
2
votes
3answers
228 views

C: How do you count items in a struct?

So I have a structure of unknown size as follows: typedef struct a{ int id; char *name; enum job {builder=0, banker, baker}; } person; person p; and I want to count how many entries are in the ...
2
votes
3answers
718 views

Size of struct within another struct in Matlab (R2010a 64-bit linux)

I'm working with a Matlab API that loads data from a proprietary format into a series of structures. Here's an example of what a dataset looks like after loading a file: >>fieldnames(data(1)) ...
2
votes
3answers
570 views

What is the difference between a composite data type and a data structure?

I read that a character array in C is a composite data type because it is a sequence of characters, but then in Java a String is a class and Wikipedia says that a class is data structure, I am ...
2
votes
4answers
215 views

How do I sort a linked list of structures by one of the fields?

Wow now i know I dont. Lol. I've got my structure like this: struct Medico{ int Id_Doctor; int Estado; char Nombre[60]; ////focus on this part of the structure, this is name. char Clave_Acceso[20]; ...
2
votes
2answers
172 views

Generic datastructures in C

I'm looking into creating a generic BST. Nothing fancy no COTS, but I'm trying to decide the best way to keep track of the type of the void*. Here's the interface for the nodes: typedef struct { ...
2
votes
3answers
1k views

How to return a pointer to a structure in ctypes?

I try to pass a pointer of a structure which is given me as a return value from the function 'bar' to the function 'foo_write'. But I get the error message 'TypeError: must be a ctypes type' for line ...
2
votes
4answers
404 views

Passing Structures by Reference? [C]

I am trying to create a linked list, with two seperate lists in one structure. That is, it holds a 'name' and a 'age' value. Then the program can either output the list sorted by name, or sorted by ...
2
votes
6answers
280 views

Initialising C structures

Is there a better way to initialise C structures? I can use initialiser lists at the variable declaration point; however this isn't that useful if all arguments are not known at compile time, or if ...
2
votes
2answers
116 views

Which data structure for List of objects + datagrid wiev

I have to develop a code which will store a list of objects, as example below 101, value 11, value 12, value 13 ...etc 102, value 21, value 22, value 23 ...etc 103, value 31, value 32, value 33 ...
2
votes
4answers
462 views

Emulating a value type structure class in PHP

Is there any way to emulate a structure class in PHP? ie a class which passes by value and not by reference, so it can still be type hinted... And if so, what different techniques could be used? ...
2
votes
1answer
339 views

Accessing structure members with a pointer

I'm trying to translate the following code from C++ to C# ` struct tPacket { WORD size; WORD opcode; BYTE securityCount; BYTE securityCRC; } ... static char data[8192] = {0}; tPacket * packet = ...
1
vote
2answers
89 views

Making a long code shorter

people! I've been told to create next code as homework. If you compile it - you'l easely see it's purpose. Now, my question is whether there is a way to make it shorter (I'm new to C). I must use ...
1
vote
1answer
81 views

What is the most Pythonic way to handle variant means of doing the same thing?

I am working on a Django 1.3 based user registration system with some unusual validation requirements. I am using the current branch of django-registration as my starting point. I must send a user ...
1
vote
2answers
86 views

C++ Private Structures

I have read that the main differences between classes and structures (other than functions), is that class members default to private, whereas structure members default to public. That implies that ...
1
vote
1answer
85 views

Assembly Language x86: Offset of an indirect operand to a structure

I created a structure that held basic information as well as some BYTE strings.. For instance: EXAMPLESTRUCT STRUCT somePrompt BYTE 20 DUP (0) ;other fields EXAMPLESTRUCT ENDS My intent was to ...

1 2 3 4