arrays

Problems of a mastermind guessing game in C

I am writing aa mastermind guessing game, but in the “White Check”, I need to remember (know) the positions of all the position “Blacks”. These positions are not required checking again. Then for “each” non-black player “guess” array compare it against “each” non-black computer “answer” array. To find a match. If find any number in the “...

How to count the "white" correctly in mastermind guessing game in c?

“White" is the checking of correct number at wrong position. But I don't know how to count it correctly. #include "stdafx.h" #include "stdlib.h" #include "time.h" int _tmain(int argc, _TCHAR* argv[]) { int answer[4]; int guess[4]; int count = 0; srand(time(NULL)); /*answer[0] = (rand() % 6)+1; answer[1] = (ra...

How do i create an array of unequal length arrays?

Hello everyone, I need to create a sort of 2D array in which each one of the secondary arrays are of different length. I have a 1D array of known length (which defines the number of arrays to be formed) with each element having a number that denotes the length of the secondary array in that position. Each one of the arrays are fairly...

[jQuery] Update item attributes when sorting

Hi. I'm new to jQuery and I need help with my little project. I'm making drag&drop list to move movie clips and count their times when dropped to destination target... and this is working OK... But main problem is that I want to sort positions in destination div. I don't know how to make all elements time update with sortable->change eve...

Why do I get "Syntax error near '$rocks['" in this Perl code?

When I run this program on ActivePerl 5.8 on Windows XP, I get a syntax error: #!C:\Perl\bin\perl.exe use strict; # enabled use warnings; (my $rocks[0], my $rocks[1]) = qw/Hello World/; # Syntax error near '$rocks[' my $rocks[2] = 'Tom'; # Syntax error near '$rocks[' my $rocks[3] = 'Cat'; # Syntax error near '$rocks[' print $rocks[...

How can I reverse an array reference and store that in another array reference in Perl?

I have this example: my $numbers = [ 1, 2, 3, 4, 5, 6 ]; my $newarray = [ reverse @$numbers ]; This example contains some synthetic code to make the $numbers arrayref appropriate for the reverse function. I would like to remove that code and do something more like this: my $newarray = reverse $numbers; I know this doesn't work, it ...

How to encapsulate an array in Java

Hi, i'm starting with Java and i'm learning about setters,getters and encapsulation. I have a very simple program, 2 classes: Container has a private int array (numArray) with his setter & getter. Main creates a Container object and uses it in totalArray method. public class Container { private int numArray[]= {0,0,0}; pub...

How to set DOM element as the first child?

Simple question - hard to answer, by my experience: I have element E and I'm appending to it some elements to it. All of a sudden, I find out that next element should be first child of E. What's the trick, how to do it? Method unshift doesn't work because E is an object, not array. Long way would be to iterate trough E's children and...

Cocoa iPhone Recursive Array

Hey there, I'm using core-data and I have an entity that has an attribute called SID and another called ParentSID. I'm trying to create a method where I can pass a fetched object from the set and it will return the lineage of that object by checking the ParentSID of each ancestor. If the ParentSID is > 0 it should loop recursively u...

PHP object like array

I need to be able to set my object like this: $obj->foo = 'bar'; then after that is set i need the following to be true if($obj['foo'] == 'bar'){ //more code here } ...

get bytes from array function vb.net

I need to get the bytes from an array of bytes starting at a certain index and for a certain length (4), how can get this? Note: I don't want to use the Array.copy sub as it is not a function. I need to put it in something like Sub MySub([arguement as byte()]the_function_I_Need(Array, index, length)) ...

Unsetting array values in a foreach loop.

I have a foreach loop set up to go through my array, check for a certain link, and if it finds it removes that link from the array. My code: foreach($images as $image) { if($image == 'http://i27.tinypic.com/29yk345.gif' || $image == 'http://img3.abload.de/img/10nx2340fhco.gif' || $image == 'http://i42.tinypic.com/9pp2456x.g...

Hiding links based on db entry

I have some links on a page such as: < a id="Digg" runat="server">< img alt="Digg" id="imgDigg" runat="server" src="~/resources/images/icons/social/digg_32.png" border="0" />< /a> I have a database table that can "turn" them on or off, in my code behind I have the following: string[] SocialMedia = new string[] { "Twitter", "Facebook"...

In Java, why are arrays objects? Are there any specific reasons?

Is there any reason why an array in Java is an object? ...

Retreive NSNumber From Array

Hi, I am relatively new to Objective C and need some array help. I have a plist with which contains a Dictionary and an NSNumber Array, with more arrays to be added later on. NSMutableDictionary *mainArray = [[NSMutableDictionary alloc]initWithContentsOfFile:filePath]; NSArray *scoresArray = [mainArray objectForKey:@"scores"]; I ne...

Getting duplicate array entries after parsing with regex

I am using regex in my PHP script to check a page for Rapidshare links, and load them into an array. My code: if(preg_match_all('/http:\/\/rapidshare\.com\/files\/.*?\/[^\s]+/', $links[0], $links)) { print_r($links); } else { die('Cannot find post links :('); } It finds the links correctly, and puts them into an array: Array...

String convertion in java

Hi All, i have written following code but it is throwing array index out of range exception String options = "" + args[0]; if (options.toLowerCase().contains("failover")) { dataToPass[0]= "failover"; callScript("Clus1toNfastfastsamehost",dataToPass); } Exceptions: exception_name = java.lang.ArrayIndex...

Can array bounds checking be disabled in Visual Basic 2008

I know that this was an advanced compiler option in previous versions of Visual Studio, is there a way to disable array bounds checking in Visual Studio 2008? There's no option for it that I can see. ...

PHP - For loop only returns last variable in array

I have a strange problem where a for loop in PHP only returns the last item in my array. The array is created with SimpleXML from an XML file. The code should return this: <tags><tag value="Tag1" /><tag value="Tag2" /><tag value="Tag3" /></tags> But instead I just get: <tags><tag value="Tag3" /></tags> So it ignores all but the l...

Delete operator and arrays

I have an abstract Base class and Derived class. int main () { Base *arrayPtr[3]; for (int i = 0; i < 3; i++) { arrayPtr[i] = new Derived(); } //some fuctions here delete[] arrayPtr; return 0; } I'm not sure how to use the delete operator. If I delete array of base class pointers as shown above, will this call de...