An array is an ordered data structure consisting of a collection of elements (values or variables), each identified by one (single dimensional array, or vector) or multiple indexes.

learn more… | top users | synonyms (2)

0
votes
1answer
42 views

I have a for loop that refuses to stay within the defined limits. The limits have been verified (by printing) during runtime

I am inserting the snippet of code that is causing the problem. Please focus on the uncommented code, as that is the actual code. The commented out code was there to help me debug. Apologies for poor ...
0
votes
2answers
37 views

Array duplicated how to make a single [duplicate]

I have for example var $test and the output is below. You can see its duplicated. How can i make it not duplicated? Is there any function for it? Array ( [title] => Array ( ...
0
votes
1answer
51 views

How to assign pointer of an “array of object” (C++)

I am a beginner in C++ that confused over dynamic array. I found a way to do it in this site, but I can't seem to make it work for "array of object" in an object. It always break when I read the Rec ...
1
vote
2answers
49 views

Converting a lowercase char in a char array to an uppercase char (java)

Hello I am trying to write a little segment of code that checks if each char in a char array is lower case or uppercase. Right now it uses the char's ASCII number to check. After it checks it should ...
-6
votes
2answers
52 views

How to create a sub array of objects in java?

I have one object array with 100 objects. I created one sub of the above mentioned array with 10 objects. Now i want the remaining 90 objects as a new array. What is the java code to do that?
-3
votes
0answers
56 views

Accessing data from an object array in python

i have an object array which when printed gives following output : (TopicArray){ Topic[] = (Topic){ sectionid = "news" webtitle = "24 hours in pictures" tid = 1 }, (Topic){ sectionid = "society" ...
1
vote
0answers
32 views

Accessing specific values in String Array in Android

I'm trying to make an Android app which parses a XML file with a lot of entries, but it will be ranged by user-defined zones. The zones names are included in a string-array zone-list: ...
1
vote
3answers
65 views

Adding objects to an array from an implemented class

Good morning, my apologies if this question is complex/confusing. I am in an intro java course and I am having some difficulties with one of my assignments! You guys on here seem to have an answer for ...
0
votes
2answers
61 views

Compare array php foreach loop

I have 2 arrays and i want to create an output array. Example array requirements for Title and Subtitle field: Array ( [title] => Array ( [required] => 1 [minLength] => ...
-1
votes
1answer
31 views

Get GitHub tags into PHP Array

Basically i need to get the tags for a given repo and place the result in a php array I've seen github API; returning an array of tags but i have no experience with cURL. I think the url would be ...
2
votes
3answers
74 views

How to convert hashmap to Array of entries [duplicate]

I have a map private HashMap<Character, Integer> map; I want to convert it to array but when I do that/I get this: Entry<Character, Integer> t = map.entrySet().toArray(); **Type ...
5
votes
2answers
45 views

JavaScript - control two-dimensional dynamic array

i want to init a two-dimensional dynamic array in javascript, it don't limit element (maybe) like var dynamic = new Array (); dynamic[] = new Array (); after i want to add value to special array ...
-3
votes
3answers
43 views

Is that possible to sort HashMap by Arrays.sort [closed]

I would like to sort an array using Arrays.sort. I know that it should be done by Collections.sort but the teacher wanted use of Arrays.sort is that possible? I would like to pass comparator.
0
votes
2answers
51 views

Java Generic Classes Arrays

I was reading this answer, and now got confused about the normal array declaration and this piece of code used to create arrays for generic classes: Gen<?> gens[] = new Gen<?>[10]; What ...
0
votes
0answers
28 views

AS3 MovieClip array not working

I am perplexed. I am using the exact same code to run a series of MovieClips through an array. Everything works perfectly except for one particular MovieClip. This MovieClip has more animations and ...
0
votes
4answers
55 views

How to store php array to text

i have php array like this. $config['sample'] = array( 'key1' => 'val1', 'key2' => 'val2' ); and i want value in $config['sample'] to write in to text file like this. $newcfg['sample'] = ...
4
votes
1answer
54 views

Retrieving multiple string values from localstorage in javascript

I am attempting to pull a string of data from localstorage in javascript and combine multiple values from multiple strings. For example I may have the following 2 strings ...
-1
votes
0answers
58 views

How %s format conversion work in C? [closed]

Suppose I write a code like this: char *arr = "Hello World"; printf("%s", arr); As I know, it prints the whole string by traversing character by character until a NUL (\0) character is found. ...
-2
votes
4answers
66 views

using array's delete_if command [closed]

Lets say, script = Array.new script.push("/home/dexter/constant.sh") script.push("/home/dexter/constant_validation.rb") script.push("/home/dexter/jobs/reporter.rb") Now when I use array's delete_if ...
0
votes
1answer
11 views

Twitter OAuth - Get values from Array

I'm attempting to get a list of users who searched a term on Twitter and so far no luck. Here's my code: $parameters = array('q' => '#puppy', 'count' => 2); $results = ...
1
vote
1answer
66 views

BST in array transversal

I have the following implementation of a binary tree in an array; 32 / \ 2 -5 / \ -331 399 The data is grouped 3 indexes at a time. index%3==0 is the value of the node, ...
-1
votes
0answers
17 views

Convert PHP Tree Array to Array List

i'm a newbie, and i have a problem with my array. I need to convert a tree array to an array list. This tree array: `Array ( [0] => Array ( [cat_id] => 1 [cat_name] => ...
0
votes
1answer
14 views

Using CGRectIntersectsRect with IBOutletCollection of an array of uiviews

Hello I have 3 views as part of an IBOutletCollection. They are in the array called myArrayOfViews. I'd like to be able to use CGRectIntersectsRect to determine when any of these 3 views overlap but ...
0
votes
1answer
39 views

How to sort a large text file's data into a multi-dimensional array?

I have a very large data file. It starts off with a big paragraph that I want to ignore or remove from the equation, then it has a year e.g. 1974, then 6 spaces, then a number to represent a month, ...
0
votes
1answer
62 views

Different ways of declaring arrays in VB.NET

In VB.NET, is there any difference between the following ways of declaring arrays? - Dim cargoWeights(10) as Double - cargoWeights = New Double(10) {} ' These are two independent statements. They ...
-7
votes
0answers
61 views

cannot convert `std::string' to `int' for argument `2' to `int EstudentInfo(int, int, std::string, std::string, int, int, int, int)' [closed]

Up top is the calling of the EstudentInfo function and StudentInfo function in main. Below is the functions themselves. I'm trying to archive a list of students (EstudentInfo), getting their info, ...
-2
votes
1answer
50 views

C Programming. Comparing an array's contents.

I have an array as result of my program's input: //1. int i, numberOfOccurances; for(i = 0; i < numOfOccurrances; i++) { printf("%d",PrintOccurrances[i]); } and as an example ...
0
votes
4answers
45 views

PHP retrieving array values using dash arrow “->”

I've been using PHP quite a while now, but never been an advanced programmer. I feel like this is dumb question but never understood why some array values can be retrieved using different methods: ...
-5
votes
1answer
86 views

How to get highest/lowest integer in a ArrayList<String> ? [closed]

Basically, Iv'e loaded a document into Java, put all of it into a string arraylist, now I want it to find the highest registered integer inside of it, and the lowest registered integer. Iv'e been ...
0
votes
2answers
35 views

Get 2 words in every array value

I have code like this one $words2= 'If you want to have a preformatted block within a list, indent by eight spaces.'; $forbiddenwords=array("word1","word2"); foreach($words2 as $b=>$v) { ...
0
votes
2answers
39 views

JavaScript — trying to use a loop to delete certain items in an array, but it deletes all items

I first tried a forEach loop to delete items from an array, but later learned that you shouldn't do this. So I tried to make one with a normal for loop. This is to cycle through an array containing ...
2
votes
2answers
89 views

What's the best way to add an item to a C# array?

I have the following array: int[] numbers; Is there a good way to add a number to the array? I didn't find an extension method that concats 2 arrays, I wanted to do something like: numbers = ...
-4
votes
1answer
68 views

Having trouble with programming arrays [closed]

I keep getting errors in programming this. Any pointers as to what I'm doing wrong would be appreciated. The program actually runs, but it returns no value and instead writes the error code that the ...
0
votes
1answer
41 views

Conversion warning. and Class error

I'm learning C++, and in an assignment I'm doing right now, I get a bunch of warnings that I suspect are causing the two errors I'm getting as well. The problem is that the lines where the warnings ...
0
votes
1answer
27 views

random image not working correctly

i have create an array to diusplay a random file name from my mysql database. unfortunatly it doesnt show correctly. i need the explode to work based on file id to show the correct banner picturse ...
0
votes
1answer
35 views

Retrieving all localstorage data in a format that can be useful in javascript

I am doing a uni assignment and the part I am up to requires me to pull the data from multiple localstorage keys and compile them in various ways (add them together basically.) I have got the data ...
0
votes
2answers
19 views

How do I empty global arrays used in a pop up slideshow?

I've created a program where you can choose a set of images by checking checkboxes. The image URL's and the alt-texts are stored in two arrays. When clicking av button on the HTML-page you open a new ...
-5
votes
1answer
36 views

Finding max/min of ArrayList Java

Hey I need help finding max and minimum of my arrayList. How do i go about doing so? No matter what code I try it doesn't work out for me. I am lost and this website is denying me any ability to ...
0
votes
7answers
52 views

Searching in an Array

I have this array: $fruits = array( [0] => array('name'=>'banana', 'color'=>'yellow' , 'shape'=>'cylinder'), [1] => array('name'=>'apple', 'color'=>'red' , ...
0
votes
2answers
34 views

Selecting mysql data with php array not working

For some reason this code isnt working and I dont know why: $action = array('id', 'lurl', 'account'); $request = 3; $stm = $pdo->prepare("SELECT ? FROM (SELECT * FROM urls ORDER BY id DESC LIMIT ...
0
votes
4answers
72 views

what is the correct string terminator in c

As I know the string terminating character in c is '\0'. can we use '0' as the terminating character too? when I assign 0 to a specific index in a char array, and then use printf, it prints only upto ...
-4
votes
0answers
49 views

converting array of int into a date string in java [closed]

I have created an array that gets 3 ints for example:(1,1,2000) How do I convert this array that called Date into a string and eventually get one of the ints like extracting an int from a ...
0
votes
1answer
47 views

Adding list to a list of lists doesn't work

I can not get this code to work. The .txt file that it is reading from is here: urls.txt The problem with this code is that it does not at all add any lines. Whenever i try to get anything at all ...
2
votes
2answers
42 views

Objective C can not process 2d array .count?

I've got the latest xcode which is xcode 4.6, and have this problem: NSArray *array = @[@[@"a",@"b"]]; NSLog(@"%d", array[0].count); Before I run it, xcode told me "Property 'count' not found on ...
1
vote
1answer
21 views

PHP: If String[Index] is in Array, PHP: String from String[1] to String[last]

Is there a PHP call for in_str? …something similar to in_array.. Am using an if-else to take the each word (string) in the array of strings (from a form-input-text) to see if the start index [0] is ...
0
votes
1answer
31 views

How to map an array index to a certain date?

I want to map an index from my 3D array to a date. I have an array (sortedData[34][12][31]) and I would like to have it so that if a date is selected from JCalendar it corresponds to the correct index ...
1
vote
2answers
28 views

Parsing JSON to Array Map Produces “The local variable may not have been initialized”

I'm currently following this tutorial ( http://mobile.dzone.com/news/android-tutorial-how-parse ) how ever // add items from doddataitemObj to dataitem string - String PUBLICEVENTTYPE = ...
2
votes
3answers
61 views

JavaScript - how to loop through an array containing objects and access their properties

I want to cycle through the objects contained in an array and change the properties of each one. If I do this: for (var j = 0; j < myArray.length; j++){ console.log(myArray[j]); } The console ...
0
votes
1answer
53 views

Bitmap Loading Breaks When Switching to Vectors over Arrays

In a recent change to switch my program from using arrays to vectors when creating a buffer, a totally unrelated problem surfaced. This switch involves the creation of a ...
0
votes
2answers
34 views

Python, cPickle, pickling lambda functions

I have to pickle an array of objects like this: import cPickle as pickle from numpy import sin, cos, array tmp = lambda x: sin(x)+cos(x) test = array([[tmp,tmp],[tmp,tmp]],dtype=object) pickle.dump( ...

1 3 4 5 6 7 1056