arrays

C++ - Vector-based Two dimensional array of objects

As suggested here I fixed my 2D array of numbers to make it work with Vector class. Header file: #include <vector> typedef std::vector<int> Array; typedef std::vector<Array> TwoDArray; And here is how it's used: TwoDArray Arr2D; // Add rows for (int i = 0; i < numRows; ++i) { Arr2D.push_back(Array()); } // Fill in test data ...

What's the difference between JavaScript Array and Object except .length property?

As I think, JS array is just a hash-map which accepts only integral value as a key. And the .length property just return largest index + 1. Is this right? Is there any other differences? ...

Performance of collection count (array etc) vs storing the count in a variable

Is there a performance difference between getting the count of an array (for example in c#) vs storing the count of an array in a variable. This is assuming that the count isn't changing. I'm presuming the answer will that storing it in a variable will cost more memory and accessing it directly e.g. array.length will be slightly slower...

ruby atomic operations in multithreaded environment

Are push and pop operations for arrays atomic? Can i safely run i = array.pop ... array.push(i) in GIL-threaded env? ...

Getting a subroutine to return a pointer referencing an array and then dereferencing it in main (in C)

Hiya im trying to write a code for basic 1D Monte-Carlo integration. To do so I need a list of pseudo-random numbers which I can then input into a function (stored in another subroutine). I've given the list of random numbers a pointer but when I try to dereference it in main I get "error: incompatible types when assigning to type ‘dou...

Problems with Function checking Array input with IF statements

The void checkboard function is not working. This is a tic tac toe game. So that function checks after each move if someone has won the game or if it is a tie. After someone wins or there is a tie the board is to be reset and the game startover. I just cannot get the void checkboard function to work. Please help me solve this problem. ...

Changes to AS3 array of string variables doesn't update the variables themselves...

I have to assume I am missing something simple, or I am not understanding something, but I can't seem to figure this. I have a list of strings that I add to an array, then attempt to set those values in a for-loop using data that I read in. The array gets updated, but the values the array contains do not. I also have an array of buttons...

Storing locations in Array as a variable to be changed in a if statement

Is there a way to store the x and y entered by the user into a location for the array. I have this: if (x == 1 && y == 1) { board[0][0] = playerMarker; } I want to make it so the x and y are stored into a variable that matches the name of a spot in an array. But I want to try and make it more like this: ...

Ruby chainable method / array

How do I implement the '<<' to have the same behavior when used as a chainable method? class Test attr_accessor :internal_array def initialize @internal_array = [] end def <<(item) @internal_array << :a @internal_array << item end end t = Test.new t << 1 t << 2 t << 3 #t.internal_array => [:a, 1, :a, 2, :a, 3] p...

PHP Combining arrays with std class

Hello, This is what I want but cant figure out how to. $a is this array PHP Code: Array ( [0] => stdClass Object ( [id] => i1 [cat] => Test1 ) [1] => stdClass Object ( [id] => i2 [cat] => Test2 ) [2] => stdClass Object ( ...

help sorting this array.

So I am looking to sort the multi dimensional array below by "fk_page_id" ascending. Does anyone have any pointers. I think usort() is where I have to look but it seems like I cant find anyone with my specific array structure. Array ( [0] => Array ( [title] => subpage of subpage! [id] => 5 ...

How to retrieve an array of a class' members from an array of that class?

Yeah, poorly worded question, but I really wasn't sure how to phrase it. :) Let's say I have a simple class that looks like this: public class Contact { public string Name { get; set; } public string PhoneNumber { get; set; } } and I have an List<> of them. Well, I'd like to be able to get a List of all Names, just like Dic...

MySQL (exploding/matching array)

Question1: MySQL table id | array 1 | 1,2,3 2 | 2 3 | 2,3 4 | 4,5,6 $_GET['id'] = 2; $a = mysql_query("SELECT * FROM `table` WHERE `array` ??? '$_GET[id]'"); In this step, I want to run through the entire array and see if it matches with the $_GET['id'], so it should output: ids: 1,2,3 Question2: MySQL table id | array 1 | ...

turn javascript array into c# array

Hey. I have this javascript file that I'm getting off the web and it consists of basically several large javascript arrays. Since I'm a .net developer I'd like for this array to be accessible through c# so I'm wondering if there are any codeplex contributions or any other methods that I could use to turn the javascript array into a c# ar...

Sorting array of dates stored in a string

Is there away i can sort the following array into the correct order? Array ( [0] => apr [1] => aug [2] => dec [3] => feb [4] => jan [5] => jul [6] => jun [7] => mar [8] => may [9] => nov [10] => oct [11] => sep ) NOTE The array comes to me like this, and sometimes it will not have all th...

PHP: Removing object by reference from associative array

Hey guys, I've got a recursive function searching an object by index in a multidimensional, associative array. $settings = array( 'title' => new XCPreferenceShortText('title'), 'html' => new XCPreferenceLongText('html'), '_blog' => array( '_blog' => new XCPreferenceHeading('blog'), 'acceptcomments' => new XCPreferenceBoolean('a...

Problem sorting an array of objects by date & time in Javascript - null values allowed

I'm working with an array of objects in Javascript and need to sort them by date and time. Here's the setup: place title date (optional) time (optional) Conceptually, the application allows users to create a list of places they're planning to go. The array of events is manually ordered at first, and users can optionally add date ...

Passing multiarrays into functions through pointer

Hello, how can I pass multiarray into function through pointer with c++. I can do this with simple arrays void Foo(int *arr) { } int someArr[10]; Foo(someArr); What about 2-dimensions array? ...

Work with arrays

I'm writing some game at c++. The problem is with arrays. It always shows the 'desk' with points (empty parts). Need comments are in the code: void showDesk(int someArray[][3]) { for(int i = 0; i < 3 ;i++) { for (int j = 0; j < 3; j++) { if(someArray [i][j] == 0) cout << "."; else if ...

Comparing an array and getting the difference

How would I compare two arrays that might have different lengths and get the difference between each array? For example: Animal animals[] = { new Cat(), new Dog() }; Animal animals2[] = { new Cat(), new Dog(), new Alligator() }; How would I compare them two arrays and make it return the instance of Alligator? ...