Tagged Questions

1
vote
2answers
19 views

How to use a c-type array as an ivar?

I need a good old-fashioned 2-dimensional array of integers in my program, but no matter how I try to declare it as an ivar, and then use @property/@synthesize, I get one compiler complaint or …
2
votes
6answers
74 views

What line(s) this code might throw a “Index was outside the bounds of the array” exception?

A little background on this error: The customer getting this error message in their log file and support hasn't been able to reproduce it yet. So I'm reviewing the code trying to determine what may …
2
votes
3answers
49 views

When in optimization phase, would it be smart to pass all array by ref?

In PHP, When we get to the optimization phase of the application (I am speaking about an app that handles hundreds of thousands of users) would it be smart to pass all arrays (where I do not mind what …
2
votes
4answers
45 views

How can I get a new array from the second item onwards in c#?

I originally had this code which I mistakenly thought would do what I wanted it to: string firstArg = args[0]; string[] otherArgs = args.Except(new string[] { args[0] }).ToArray(); However, it …
0
votes
9answers
162 views

How much should I add when resizing an array?

I'm having a contest with another student to make the fastest version of our homework assignment, and I'm not using an ArrayList for performance reasons (resizing the array myself cut the benchmark …
3
votes
1answer
24 views

PHP Calculate Balanced Arrays

Ok, I'm not sure if the title is that effective but its the best I could come up with. Basically here is the scenario. I have 11 categories. In each category, I have items, but one category might …
1
vote
6answers
173 views

C++ — Pointers to Arrays — Arrays of Pointers

Hello, I notice this has caused confusion for several people, but after reading a couple of posts on here and the cplusplus tutorial my brain is still scrambled. Suppose I have the following …
1
vote
2answers
49 views

best method to manipulate array keys in PHP

I have an associative array. I need to add ':' to the start of all the keys. What would be the fastest/simplest way of doing this? And what would be the most efficient way to do this?
0
votes
2answers
27 views

Set ItemsSource of a ComboBox to an Array of Integers?

Set ItemsSource of a ComboBox to an Array of Integers?
0
votes
5answers
82 views

What may cause losing object at the other end of a pointer in c++?

I have a class V, and another class N. An object of N will have an array of pointers to objects of class V (say V **vList). So, N has a function like V **getList(); Now in some function of other …
5
votes
7answers
138 views

Optimized method for calculating cosine distance in Python

I wrote a method to calculate the cosine distance between two arrays: def cosine_distance(a, b): if len(a) != len(b): return False numerator = 0 denoma = 0 denomb = 0 for i …
2
votes
3answers
138 views

Declaring arrays similar to C style (C++)

In C a programmer can declare an array like so: unsigned char Fonts[2][8] { [1] = {0, 31, 0, 31, 0, 31, 0, 31} }; And element [0] is likely random bits. Is there a similar way in C++?
2
votes
9answers
247 views

int array to string

In C#, I have an array of ints, containing digits only. I want to convert this array to string. Array example: int[] arr = {0,1,2,3,0,1}; How can I convert this to a string formatted as: …
0
votes
4answers
49 views

Combine pairs to groups [PHP / Arrays]

I have pairs of items in an PHP array. Example: <?php $elements = array( 'tiger'=>'lion', 'car'=>'bike', 'lion'=>'zoo', 'truck'=>'plane' ); ?> Now I want to combine these …
0
votes
6answers
113 views

Value equal to ANY value in an array?

Hi, just wondering if there is any way of checking if Value A is equal to ANY value within an array (without using large loop functions) - sort of like a "Where" function. e.g. if …

1 2 3 4 5 104 next
15 30 50 per page