0
votes
4answers
117 views
Tic Tac Toe help
I've written a tic tac toe code that fine to a point. I have Alpha-Beta Pruning working also. I've ran across a problem that I need ideas, NOT CODE. How can I choose a move that wi …
0
votes
0answers
7 views
can any 1 explain me the use of index_of_min in the below function used for selection sort..?
void selectionSort(int array[], int n)
{
for(int x=0; x
is this function written correct..?
2
votes
1answer
28 views
Which data structure for List of objects + datagrid wiev
Hi,
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 3 …
5
votes
8answers
358 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 structur …
0
votes
2answers
142 views
error in function returning structure
#include<stdio.h>
#include "amicablenumber.h"
int i,j;
struct amicable
{
int **amicablePair;
int size;
};
main()
{
int startnum = 250;
int endnum = 1000;
struct …
2
votes
4answers
100 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 …
1
vote
1answer
176 views
P/Invoke Marshalling Help - Nested Structures - VB.NET
Ok, what the heck am I doing wrong here..
"System.TypeLoadException: Cannot marshal field 's2' of type 'MY_Struct1': The type definition of this field has layout information but h …
0
votes
5answers
76 views
Cannot see members of a structure declared as nullable
In VB.NET, why can't I see a member of a structure when I make it a nullable type?
Example:
Public Structure myNullable
Dim myNullVar As Integer
End Structure
Sub Main() …
1
vote
2answers
198 views
Incorrectly aligned or overlapped by a non-object field error
I'm trying to create the following structure:
[StructLayout(LayoutKind.Explicit, Size=14)]
public struct Message
{
[FieldOffset(0)]
public ushort X;
…
1
vote
2answers
179 views
Structure prototype?
How do I put a struct in a separate file? I can do it with functions by putting the function prototype in a header file e.g. file.h and the function body in a file like file.cpp an …
1
vote
3answers
112 views
PHP- making a fake directory!
I have been looking at some sites that pretend that there is a directory structure in the URL and wondered 'how?'.
I am taking control of a website at work and have looked over t …
1
vote
3answers
123 views
Data structure similar to a 2-argument map
Is there a data structure (readily available in STL or boost), that accepts two arguments and maps it to a certain value?
Examples would be for returning certain information in a …
3
votes
8answers
245 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;
}; …
0
votes
3answers
183 views
Modify contents in foreach
I tend to use ArrayLists of structures. It is then very easy to cycle through the list with a foreach.
The problem I have is I cant use a foreach to modify the structures contents …
4
votes
3answers
1k views
How to initialize nested structures in C++?
Hi, 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 struc …
