arrays

Convert Hash Map to 2D Array

What is the easiest way to convert a HashMap into a 2D array? ...

returning two created arrays in c++

Hi I have a text file containing two arrays and one value(all integers) like this 3 90 22 5 60 33 24 Where the first number stands for how many integers to read in. I can read in all this in one function. Do I need several functions to be able to use the different matrices and the first variable? ifstream in(SOMEFILE.dat); if...

How to style text in a string array?

Hi, I have a string array and was trying to style certain parts of the text with tags like < b>, < i>, ... but it doesn't work. The array looks like this: <resources> <array name="hour1"> <item>blabla\n<b>blabla</b></item> </array> The text is displayed in the textview like this: tTite...

Why use an array to implement a "list" instead of a hash table?

Consider an array versus a hashtable where the keys are just the integral indexes of a list. Their average-case insertion, lookup, and removal big-O bounds are all O(1) constant time. I understand that you may get some low-level wins in cache locality with an array, and there is a marginal (mostly-constant) overhead to the hashtable ope...

Pointers, NSMutableArray, Retain, Loops and Confusion

Hi! It might be that the problem is straight forward but I don't get my head around it. I have the following iPhone code for(int x = 0 ; x < [allFriends count] ; x++) { Friend *f = [[Friend alloc] init]; f = [allFriends objectAtIndex:x]; if([uid isEqualToString:[f uid]]) { ...

How are arrays implemented in java?

Arrays are implemented as objects in java right? If so, where could I look at the source code for the array class. I am wondering if the length variable in arrays is defined as a constant and if so why it isn't in all capital letters LENGTH to make the code more understandable. EDIT: http://java.sun.com/docs/books/jls/second_edition/htm...

PHP Array Manipulation

array 324545432 => array 0 => array 'Age' => int 1 'Status' => string 'INSTALLED' 'Id' => string '830026495' 'name' => string 'TV' 1 => array 'Age' => int 2 'Status' => string 'GOOD' 'Id' => string '553718299' 'name' ...

PHP get last iteration foreach loop value

Ok I have a foreach loop and wanted to know if I could get the last iteration data value for the current iteration? Code: foreach($array as $key=>$data) { echo "Key: ".$key." Data: ".$data."<br />"; } Results: Key: 0 Data: 23244 Key: 0 Data: Program ID: 39-1-1499-1 Results I would like: Key: 23244 Data: Program ID: 39-1-1499-1...

Convert Object to Hash Object in Mootools?

Hello! Is it possible to convert/reassemble the Object to Hash Object? For example and firstly, i have two arrays: ... var animals=[]; //... "cat","dog","cow" var sounds=[]; //.. "meow!","woof!","moo!" var u = animals.associate(sounds); // now "u" is an Object with associative values: "cat" : "meow!" "dog" : "woof!" "cow" : "moo!";...

Quickest way of storing a byte array in an array?

I was wondering what is the quickest way of storing a byte[] with an integer index in java without using Maps, TreeMap, ArrayLists etc. i.e. not like this: private Map<Integer, byte[]> example = new TreeMap() ...

Why can't I access the exploded array element immediately?

Why can't I immediately access elements in the array returned by explode()? For example, this doesn't work: $username = explode('.',$thread_user)[1]; //Parse error: syntax error, unexpected '[ But this code does: $username = explode('.',$thread_user); $username = $username[1]; I don't usually program in PHP, so this is rather co...

How to remove particular element from an Array and merge all other content together in php ?

I have input array as: Input Array: array 324545433 => array 0 => array 'Age' => int 0 'Status' => string 'INSTALLED/GOOD' 'Id' => string '830026495' 'name' => string 'TV' 1 => array 'Age' => int 0 'Status' => string 'INSTALLED/GOOD' ...

Java Null Pointer Exception

I attempted to adapt a class I had found on the web for a dynamic array of ints for a dynamic array of "Entities," but now I am getting a "NullPointerException." The code raising the exception is: public void initialize() { buffer = new BufferedImage(800,600,BufferedImage.TYPE_INT_RGB); Entities.put(Entities.getCurrentPos()+1, ...

Easy way to apply a function to an array

I am aware of array_walk() and array_map(). However when using the former like so (on an old project) it failed array_walk($_POST, 'mysql_real_escape_string'); Warning: mysql_real_escape_string() expects parameter 2 to be resource, string given. So I went with this slightly more ugly version foreach($_POST as $key => $value)...

Creating array in coldfusion

How would I create an array that will return data in the following format via CF 8? This information originates from an order table based on SKU value and QTY. I already know the query to use to pull the data. I just would like some help to format it. The original data exists in the following format SKU82328 QTY 1 SKU9832 QTY 3 SK...

How to determine the size of an array of strings in C++?

I'm trying to simply print out the values contained in an array. I have an array of strings called 'result'. I don't know exactly how big it is because it was automatically generated. From what I've read, you can determine the size of an array by doing this: sizeof(result)/sizeof(result[0]) Is this correct? Because for my program, ...

multidimentionnal array, grouping, sorting or merging?

Possible Duplicate: PHP - Merge duplicate array keys in a multidimensional array I have have something similar to this, and Arrays go on for over 100 elements. Array ( [0] => Array ([id] => 16 [data] => Array ( [title] => Array ( ...

C# Increasing an array by one element at the end

In my program I have a bunch of growing arrays where a new element is grown one by one to the end of the array. I identified Lists to be a speed bottleneck in a critical part of my program due to their slow access time in comparison with an array - switching to an array increased performance tremendously to an acceptable level. So to gro...

C#: Neat code to convert bool[] -> "false, true, true, false"

How would you convert an array of booleans to a string like "false, true, true, false" - using as few lines of code as possible? Python allows me to use the following (very nice and clean): ", ".join(map(str, [False, True, True, False])) In C#, string.Join only allows me to join an array of strings. So what is a short way to do the...

Creating a multilevel array using parentIds in PHP

I'm trying to setup a list that can have multiple levels, using parentId to define its parent. The first item's parentId is NULL. Example of some entries: id parentId name 1 NULL item1 2 NULL item2 3 1 item3 4 2 item4 5 3 item5 6 3 item6 So, 1 and 2 are main items; 3 is a child of ...