active questions tagged arrays - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T18:44:24Zhttp://stackoverflow.com/feeds/tag/arrayshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1856150/sort-ascending-or-descending-inside-a-bubble-sort0Sort Ascending or Descending inside a Bubble-SortNoCanDo2009-12-06T18:28:58Z2009-12-06T18:41:11Z
<p>After <a href="http://stackoverflow.com/questions/1855527/bubble-sort-with-2d-array">this was answered</a> I continued to work my way through the code.
It work's perfect this way:</p>
<pre><code>static String[][] bubbleSort(String customerdata[][], int sortafter, int asc)
{
String temp [];
boolean sort;
do{
sortiert = true;
for (int i = 0 ; i < customerdata.length - 1; i++){
if(customerdata[i][sortafter].compareTo(customerdata[i+1][sortafter]) < 0){
temp = customerdata[i];
customerdata[i] = customerdata[i+1];
customerdata[i+1] = temp;
sort = false;
}
}
}while(!sort);
return customerdata;
}
</code></pre>
<p>But as you can see, I'm missing int asc inside this function. What I want is to additionaly return a sorted descending or ascending array (depending wether asc == 1 (asc), or asc == 0 (desc)).</p>
<p>I'm at loss how to implement it inside this. I mean currently I can sort it ascending or descending, but once AFTER this method was called with some nasty long for() and if() loops. </p>
<p>I'd like to have it compactly inside and depending wether I give bubblesort(x,0,0) or (x,0,1) the list should be returned descending or ascending.</p>
http://stackoverflow.com/questions/9673/remove-duplicates-from-array4Remove duplicates from arraylomaxx2008-08-13T11:48:44Z2009-12-06T17:50:22Z
<p>I have been working with a string[] array in c# that gets returned from a function call. I was wondering what the best way to remove duplicates from this array would be? I could possibly cast to a Generic collection, but I was wondering if there was a better way to do it, possibly by using a temp array?</p>
http://stackoverflow.com/questions/1855075/question-about-an-array-in-gallery20Question about an array in gallery2bob2009-12-06T11:05:45Z2009-12-06T11:40:28Z
<p>I'm working on a modification from a theme in the open source project "gallery2".</p>
<p>Here is the code that I am looking at: </p>
<p>For anyone familiar with it, its in the SearchShowAll.tpl file in the search module in the modules section of the download.</p>
<pre><code> <ul class="giInfo">
{foreach from=$result.fields item=field }
<li>
<span class="ResultKey">{$field.key}:</span>
<span class="ResultData">{$field.value|default:"&nbsp;"|markup}</span>
</li>
{/foreach}
</ul>
</code></pre>
<p>It is a smarty foreach loop and it grabs this data<br>
Title: BB 08 PR 6-340<br>
Summary:<br>
Keywords: A Hillbilly Cat; Gavin Jordan; Margo Hazell<br>
Description:<br>
Owner: Gallery Administrator </p>
<p>However, I just want it to get the Title: and display it, not any of the other stuff. I am unsure of what the array looks like and how to get a specific value from it in smarty format and also in the case of this gallery. </p>
http://stackoverflow.com/questions/1811846/how-to-get-the-second-highest-number-in-an-array-in-visual-c1How to get the second highest number in an array in Visual C#?Phenom2009-11-28T07:14:43Z2009-12-06T03:57:22Z
<p>I have an array of ints. I want to get the second highest number in that array. Is there an easy way to do this?</p>
http://stackoverflow.com/questions/1853883/php-form-validation-with-an-array-print-the-name-of-a-variable0Php form validation with an array - print the name of a variableandrew2009-12-05T23:42:15Z2009-12-06T00:29:43Z
<p>Hi, I am trying to do form validation by putting the post values into variables and those variables into an array and then cycling through them and outputting error messages for fields that are not filled in.
I am having two issues. Firstly, the if statement is running for all the values even if the field is empty or is == to 'undefined' and secondly i don't know how to print out the actual name of a variable instead of the variable value. For example</p>
<pre><code>$variable = 'hello';
</code></pre>
<p><code>print_x($variable)//prints 'variable' instead of 'hello'</code></p>
<p>I have tried two methods which are shown below.</p>
<pre><code> $error_message = "The following fields must be filled in:<br />";
$fields_to_validate_arr = array($category,$producer,$product_name,$image_name,$description,$stock_quantity,$min_sale);
foreach($fields_to_validate_arr as $v){
if(empty($v) || $v = 'undefined'){//using variable bariables
//increment the error message with a custom error message.
$error_message .= "->" . ucwords(str_replace('_',' ',$v)) . "<br />";//no need to use variable variables
}
}
</code></pre>
<p>And a different method where i use variable variables</p>
<pre><code>$error_message = "The following fields must be filled in:<br />";
$fields_to_validate_arr = array('category','producer','product_name','image_name','description','stock_quantity','min_sale');
foreach($fields_to_validate_arr as $v){
if(empty($$v) || $$v = 'undefined'){//using variable bariables
//increment the error message with a custom error message.
$error_message .= "->" . ucwords(str_replace('_',' ',$v)) . "<br />";//no need to use variable variables
}
}
</code></pre>
<p>The variables are assigned further up in my code like </p>
<pre><code>$category = myescape_function($_POST['category']);
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/381621/using-arrays-or-stdvectors-in-c-whats-the-performance-gap5Using arrays or std::vectors in C++, what's the performance gap?tunnuz2008-12-19T17:30:26Z2009-12-05T23:24:10Z
<p>In our C++ course they suggest not to use C++ arrays on new projects anymore. As far as I know Stroustroup himself suggests not to use arrays. But are there significant performance differences?</p>
http://stackoverflow.com/questions/1852684/cleaning-up-a-php-array-to-make-it-0-based-again0Cleaning up a PHP array to make it 0 based againJoseph2009-12-05T16:43:20Z2009-12-05T17:30:37Z
<p>I sometimes end up having data in an array that starts far into the array, at position 25 instead of 0 for example.</p>
<p>Example:</p>
<pre><code>Array
(
[16] => Array
(
[0] => http://rapidshare.com/files/268123830/hmh.fo3-oks.part01.rar
[1] => Marked as illegal
)
[17] => Array
(
[0] => http://rapidshare.com/files/268124204/hmh.fo3-oks.part02.rar
[1] => Marked as illegal
)
[18] => Array
(
[0] => http://rapidshare.com/files/268127882/hmh.fo3-oks.part03.rar
[1] => Marked as illegal
)
)
</code></pre>
<p>This is because of the user input, not my coding. I need a way to clean up the array to somehow make it 0 based again. The above example should be like this after the cleanup:</p>
<pre><code>Array
(
[0] => Array
(
[0] => http://rapidshare.com/files/268123830/hmh.fo3-oks.part01.rar
[1] => Marked as illegal
)
[1] => Array
(
[0] => http://rapidshare.com/files/268124204/hmh.fo3-oks.part02.rar
[1] => Marked as illegal
)
[2] => Array
(
[0] => http://rapidshare.com/files/268127882/hmh.fo3-oks.part03.rar
[1] => Marked as illegal
)
)
</code></pre>
<p>So I can effectively loop though each array element and output it to the user.</p>
<p>Any help on how I would clean up this array would be useful, thanks. :)</p>
http://stackoverflow.com/questions/1847803/xl-vba-passing-an-array-in-a-user-defined-function0XL VBA - Passing an array in a user defined function?unknown (google)2009-12-04T15:44:22Z2009-12-05T09:46:21Z
<p>How to pass an array as a parameter for a user defined function in MS Excel VBA?</p>
<p>Eventually I want to test that if a given date (dateDay) is in several ranges of dates (arrayVacation):</p>
<pre><code>Function CB_IsInRangeArr(dateDay As Date, ParamArray arrayVacation() As Variant) As Boolean
' Test that the array is in the form of 2 columns and n rows / if not send back an error
If (UBound(arrayVacation, 1) <> 2) Then
CB_IsInRangeArr = CVErr(xlErrNA)
Else
CB_IsInRangeArr = TRUE
End If
End Function
</code></pre>
<p>Yet already at this stage, the function does not work properly. It returns #VALUE! and I can find a way to get it to work.</p>
<p>Thank you for your help,</p>
http://stackoverflow.com/questions/1840481/how-can-i-know-the-actual-maximum-number-of-elements-a-net-array-of-a-given-type1How can I know the ACTUAL maximum number of elements a .net array of a given type can be allocated?AZ2009-12-03T15:10:50Z2009-12-05T04:12:21Z
<p>I know that all arrays in .net are limited to 2 GB, under this premise, I try not to allocate more that n = ((2^31) - 1) / 8 doubles in an array. Nevertheless, that number of elements still doesn't seem to be valid. Anyone knows how can I determine at run time the maximum number of elements given sizeof(T)?</p>
<p>I know that whatever quantity approaching that number is just a lot of elements but, for all intents and purposes, let's say I need it.</p>
<p>Note: I'm in a 64-bit environment, with a target platform for my application of AnyCPU, and at least 3100 MB free in RAM.</p>
<p><strong>Update:</strong>
Thank you all for your contributions and sorry I was so quiet. I apologise for the inconvenience. I have not been able to rephrase my question but I can add that, what I am looking for is solving something like this:</p>
<pre><code>template <class T>
array<T>^ allocateAnUsableArrayWithTheMostElementsPossible(){
return gcnew array<T>( ... );
}
</code></pre>
<p>The results in my own answer are <em>kinda</em> satisfactory but not good enough. Furthermore, I haven't test it on another machine (Kind of hard finding another machine with more than 4 GB). Besides, I have been doing some research on my own and it seems there's no cheap way to calculate this at run time. Anyhow, that was just a plus, none of the user of <em>what-I-am-trying-to-accomplish</em> can expect to use the feature I am trying to implement without having the capacity.</p>
<p>So, in other words, I just want to understand why the maximum number of elements of an array don't add up to 2GB <em>ceteris paribus</em>. A top maximum is all I need for now.</p>
http://stackoverflow.com/questions/1847920/vbscript-function-to-create-a-two-dimensional-array-like-getrows-does1VBScript function to create a two-dimensional array, like GetRows doesMartha2009-12-04T16:02:52Z2009-12-05T02:08:18Z
<p>This is asp classic using VBScript, and no, it ain't moving to .net anything, so don't even ask.</p>
<p>OK, so the classic way to get data out of a database is to use GetRows:</p>
<pre><code>Dim MyRecords
Dim rs, conn
[...database opening stuff...]
If Not rs.EOF Then
MyRecords = rs.GetRows
End If
[...close database & set to Nothing...]
</code></pre>
<p>Note how MyRecords is not dimmed as an array; it only becomes one after the <code>GetRows</code> call.</p>
<p>My question is, how do I do something similar without using <code>GetRows</code>? For example, if the data needs to come from <code>Request.Form</code> instead of the database? (Doing something like "If conditions are met, then get data from database, else get data from form, but display the data the same way regardless where it came from".)</p>
<p>There's an <code>Array</code> function in vbScript, but it only creates one-dimensional arrays - it's kinda like a limited version of the <code>Split</code> function, as far as I can tell. I need two dimensions. (Backwards two dimensions, no less, to match the way <code>GetRows</code> works - i.e. the first dimension is the columns, the second dimension is the rows.)</p>
<p>I can't use dynamic arrays (<code>Dim MyRecords()</code>, then later <code>ReDim MyRecords(x,y)</code>) because then the <code>GetRows</code> will throw an error.</p>
<p>Is there a way to do what I want, or do I have to resign myself to juggling two different arrays, one for the database, the other for the form? Or worse, use a <code>Do While</code> loop to populate the array from the database... //shudder.</p>
http://stackoverflow.com/questions/1836959/how-to-add-to-end-of-array-c2How to add to end of array C#?Timmy2009-12-03T00:52:50Z2009-12-04T14:20:25Z
<p>How do I add a new <code>item</code> from a TextBox and Button on a Windows Form at the end of an <code>ArrayList</code> which references a class?</p>
<pre><code>private product[] value = new product[4];
value[1] = new product("One",5)
value[2] = new product("Two",3)
value[3] = new product("Three",8)
</code></pre>
<h3>Workflow</h3>
<ul>
<li>Enter new products details into <code>textbox1</code>, <code>textbox2</code>, <code>textbox3</code> </li>
<li><p>When I click <code>Add</code> the new product gets added to the array:</p>
<p><code>value[1] = new product("One",5)</code><br>
<code>value[2] = new product("Two",3)</code><br>
<code>value[3] = new product("Three",8)</code><br>
<code>value[4] = new product("Four",2)</code> </p></li>
</ul>
<p>What is the code for doing this?</p>
http://stackoverflow.com/questions/1844875/deleting-mulitple-records-in-rails0Deleting Mulitple Records in Railsshaunandrews2009-12-04T04:32:28Z2009-12-04T12:49:48Z
<p>I'm working on an application that allows user to select multiple entries. Once those entries are selected, the user can choose to delete them all. When clicking on the delete button (after selected one or more entries), a modal dialog window is displayed showing the entries that the user has selected with a confirmation button.</p>
<p>Currently, all of the above is done using jQuery on the clientside. I've managed to get it all set so that the confirmation button (which is a <code>link_to</code> using the <code>:method => :delete</code>) has a URL of <code>/entries/12,13,16,17</code> where the numbers represent the id's of the entries that the user selected. I've also tried sending the url with the format of <code>/entries/[1,2,3,4]</code> with no luck. I have a feeling I'm not sending a <em>real</em> array.</p>
<p>Here's my delete method, which works perfectly fine when one id is used (i.e. <code>/entries/1</code>), and would hopefully continue to work with one id:</p>
<pre><code>def destroy
@entry = current_user.entries.find(params[:id])
@entry.destroy
respond_to do |format|
format.html { redirect_to(entries_url) }
format.xml { head :ok }
end
end
</code></pre>
<p>When I send multiple id's (in the format of <code>1,2,3,4,5</code>), only the first entry is deleted, while the rest are left untouched. Here is what my webrick log looks like after performing the action:</p>
<pre><code>Processing EntriesController#destroy (for 127.0.0.1 at 2009-12-03 23:07:24) [DELETE]
Parameters: {"action"=>"destroy", "_method"=>"delete", "id"=>"19,22", "controller"=>"entries"}
User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = '2') LIMIT 1
User Update (0.3ms) UPDATE "users" SET "updated_at" = '2009-12-04 04:07:24', "last_request_at" = '2009-12-04 04:07:24' WHERE "id" = 2
Entry Load (0.2ms) SELECT * FROM "entries" WHERE ("entries"."id" = 19 AND ("entries".user_id = 2))
Tagging Load (0.4ms) SELECT * FROM "taggings" WHERE ("taggings".taggable_id = 19 AND "taggings".taggable_type = 'Entry' AND (taggings.context = 'tags'))
Tag Load (0.2ms) SELECT * FROM "tags" WHERE ("tags"."id" IN (22,23,24,29))
Tagging Destroy (0.2ms) DELETE FROM "taggings" WHERE "id" = 66
Tagging Destroy (0.1ms) DELETE FROM "taggings" WHERE "id" = 67
Tagging Destroy (0.0ms) DELETE FROM "taggings" WHERE "id" = 68
Tagging Destroy (0.1ms) DELETE FROM "taggings" WHERE "id" = 69
Tagging Load (0.1ms) SELECT * FROM "taggings" WHERE ("taggings".taggable_id = 19 AND "taggings".taggable_type = 'Entry')
Entry Destroy (0.1ms) DELETE FROM "entries" WHERE "id" = 19
Entry Load (0.5ms) SELECT * FROM "entries" WHERE ("entries".user_id = 2)
Redirected to http://localhost:3000/entries
</code></pre>
<p>As you can see, the ids are sent (<code>"id"=>"19,22"</code>) but only the first entry is loaded. After that, its associated taggings are deleted (I'm using the <code>acts_as_taggable_on</code> plugin). Then, the first entry (<code>id => 19</code>) is destroyed, and the user is redirected back to the entries listing page.</p>
<p>What is should do is repeat that process (up the the redirect) for each id passed. I'm confused, because the <a href="http://ar.rubyonrails.org/classes/ActiveRecord/Base.html#M000342" rel="nofollow">RoRs docs</a> state that: </p>
<blockquote>
<p>id - Can be either an Integer or an
Array of Integers.</p>
</blockquote>
<p>What am I doing wrong? I feel like I'm so close, I can taste it! It was a huge triumph for me to get all the jQuery working, so now I know the only piece missing in the controller method handling the multiple id's.</p>
<p>Any help would be greatly appreciated!</p>
http://stackoverflow.com/questions/1843648/how-to-implement-a-cache-with-binary-array-as-key-and-binary-arrays-as-values-in1How to implement a cache with binary array as key and binary arrays as values in JavaTequila Guy2009-12-03T22:58:26Z2009-12-04T12:35:52Z
<p>I have a requirement to create a java cache which holds all the cities and airports. So, if i query the cache for a location, lets say a city, it should return all the airports in that city and if I query a location which is an airport, i should get back that airport.
Also, each location has to be stored as a byte array in cache.(as the exposed interface for querying the cache has byte[] as the parameter for location)
Other considerations are:</p>
<ol>
<li>The retrieval has to be very fast, as fast as possible </li>
<li>The cache is loaded only once at system startup.It doesn't change after getting
loaded. </li>
<li>As its loaded only once, we can keep it sorted if that speeds up the retrieval.</li>
</ol>
<p>What I have got so far:</p>
<p><strong>Approach 1</strong></p>
<p>Create a thin wrapper over byte[] array, lets say ByteWrapper. Put each location(both airports and cities) as a key in map(TreeMap?). Use lists of ByteWrapper(containing airports where ever applicable) as values.</p>
<p><strong>Approach 2</strong></p>
<p>Create multi dimensional byte[] array which is sorted on location. Its essentially a map. Then use binary search to locate the key and return results.</p>
<p>What approach would you suggest? Please let me know in case you have better ideas
Thanks</p>
http://stackoverflow.com/questions/1805031/iphone-development-xcode-putting-user-input-names-into-text-array0iPhone Development xcode : Putting user input (names) into text array zcoder2009-11-26T18:11:27Z2009-12-04T11:49:07Z
<p>I am trying to load names in an array using UIAlert and then print them one by one. I can not figure this out can anyone help me with this. I would really your help apprecaite</p>
http://stackoverflow.com/questions/1846222/whats-the-time-complexity-of-getting-an-element-in-an-array-in-php1What's the time complexity of getting an element in an array in PHP?-providershtole2009-12-04T10:53:54Z2009-12-04T11:09:13Z
<p>I've little idea of how arrays are implemented in PHP, and know that for most OOP languages the complexity is one of constant time, O(1), for an array of a predefined type. So what's the deal in PHP with it's dynamic typing, extending arrays, etc.?</p>
http://stackoverflow.com/questions/1845594/isnt-an-array-arrayname-always-a-pointer-to-the-first-element-in-c1Isn't an array/arrayname always a pointer to the first element in C?Chris_452009-12-04T08:20:45Z2009-12-04T11:05:54Z
<p>What's going in below isn't an arrayname always a pointer to the first element in C?</p>
<pre><code>int myArray[10] = {0};
printf("%d\n", &myArray); /* prints memadress for first element */
printf("%d\n", myArray); /* this prints a memadress too, shows that the name is a pointer */
printf("%d\n",sizeof(myArray)); /* this prints size of the whole array, not a pointer anymore? */
printf("%d\n",sizeof(&myArray)); /* this prints the size of the pointer */
</code></pre>
http://stackoverflow.com/questions/1844392/how-to-delete-double-values-in-array0how to delete double values in array?fayer2009-12-04T01:47:44Z2009-12-04T01:56:17Z
<p>I've got an array like this one:</p>
<pre><code>arrayname[1] = "jacob";
arrayname[2] = "peter";
arrayname[3] = "jacob";
arrayname[4] = "nicholas";
</code></pre>
<p>I want to remove the double jacob so it will be like</p>
<pre><code>arrayname[1] = "jacob";
arrayname[2] = "peter";
arrayname[3] = "nicholas";
</code></pre>
<p>How do I do that?</p>
http://stackoverflow.com/questions/1844257/add-values-to-array0add values to array?fayer2009-12-04T01:15:28Z2009-12-04T01:26:39Z
<p>i've got an array with existing key/value-pair and i want to add values to the keys after the existing ones without deleting anything.</p>
<p>how do i do that?</p>
http://stackoverflow.com/questions/1836719/i-need-help-parsing-a-php-array-for-an-embedded-google-calendar0I need help parsing a PHP array for an embedded Google Calendarfarkenfooken2009-12-02T23:51:22Z2009-12-03T18:15:34Z
<p>I'm not sure I'm headed on the right path but what I want to do is have an embedded Google Calendar with multiple calendars encoded in the iframe source. Example:</p>
<pre><code><iframe src="https://www.google.com/calendar/embed?src=cjvssf4vj98hoa4os5hr26fmcg%40group.calendar.google.com&amp;src=cjvssf4vj98hoa4os5hr26fmcg%40group.calendar.google.com"></iframe>
</code></pre>
<p>Notice the two sources (the resource IDs happen to be the same in this example, but in a real scenario they'd be different). What I want to do now is create an array that would let me put the name of the calendar and its resource ID. Example:</p>
<pre><code><?php $rsrcid = array('Some Calendar' => 'cjvssf4vj98hoa4os5hr26fmcg%40group.calendar.google.com',); ?>
</code></pre>
<p>And use this array to replace that chunk of src=, etc. so that it's easier to keep track of all these resource ID's (I plan on adding a few dozen). It would need to have concatenated to it the &src= to each line. No spaces. So that it's a long string that I can insert into the iframe src.</p>
<p>It should be noted I'm not at all good at writing my own PHP, so if I'm even thinking incorrectly please let me know. Does that make sense?</p>
<p>Thanks for reading.</p>
http://stackoverflow.com/questions/1841720/array-class-not-rendering-into-datagrid0Array class not rendering into datagridTony2009-12-03T17:57:51Z2009-12-03T17:57:51Z
<p>The following application is not rendering the information that I am getting back from a web service into the datagrid. I know I am being able to connect to the webservice because I am getting the count for the class array. I am being able to get a Response.Write but when I try to pull all the information from the array class I haven't been able to see the elements nor to render the whole class into the data grid. What might be my issue? I am stuck with this one.</p>
<pre><code>void LoadABCPhoneInfo()
{
PhoneTypeInfo[] PhoneInfo = GetPhoneInfo();
DataSet quoteDataSet = XmlString2DataSet(PhoneInfo.ToString());
//Here is NOT doing the databinding.
grdABC.DataSource = quoteDataSet;
grdABC.DataBind();
grdABC.Visible = true;
}
private PhoneTypeInfo[] GetPhoneInfo()
{
//string strGetPhoneInfo = String.Empty;
PhoneTypeInfo[] strGetPhoneInfo; //
try
{
OwnerAndReservation ownerAndReservationWS = new OwnerAndReservation();
strGetPhoneInfo = ownerAndReservationWS.GetPhoneTypes();
//GetPhoneTypesAsync()
//Here I can get the count for the array
Response.Write("GetPhoneInfo Length "+ strGetPhoneInfo);
}
catch (Exception ex)
{
//raise the error
string errorMessage = String.Format("Error while trying to connect to the Web Service. {0}", ex.Message);
throw new Exception(errorMessage);
}
//return the quote information
return strGetPhoneInfo;
}
private DataSet XmlString2DataSet(string xmlString)
{
//create a new DataSet that will hold our values
DataSet quoteDataSet = null;
//check if the xmlString is not blank
if (String.IsNullOrEmpty(xmlString))
{
//stop the processing
return quoteDataSet;
}
try
{
//create a StringReader object to read our xml string
using (StringReader stringReader = new StringReader(xmlString))
{
//initialize our DataSet
quoteDataSet = new DataSet();
//load the StringReader to our DataSet
quoteDataSet.ReadXml(stringReader);
}
}
catch
{
//return null
quoteDataSet = null;
}
//return the DataSet containing the stock information
return quoteDataSet;
}
</code></pre>
http://stackoverflow.com/questions/1841246/c-splitting-an-array2C# Splitting An Arrayin_jeopardy2009-12-03T16:48:58Z2009-12-03T17:01:15Z
<p>I need to split an array of indeterminate size, at the midpoint, into two separate arrays.</p>
<p>The array is generated from a list of strings using ToArray().</p>
<pre><code> public void AddToList ()
{
bool loop = true;
string a = "";
Console.WriteLine("Enter a string value and press enter to add it to the list");
while (loop == true)
{
a = Console.ReadLine();
if (a != "")
{
mylist.Add(a);
}
else
{
loop = false;
}
}
}
public void ReturnList()
{
string x = "";
foreach (string number in mylist)
{
x = x + number + " ";
}
Console.WriteLine(x);
Console.ReadLine();
}
}
class SplitList
{
public string[] sTop;
public string[] sBottom;
public void Split(ref UList list)
{
string[] s = list.mylist.ToArray();
//split the array into top and bottom halfs
}
}
static void Main(string[] args)
{
UList list = new UList();
SplitList split = new SplitList();
list.AddToList();
list.ReturnList();
split.Split(ref list);
}
}
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1838475/php-associative-array-strucuture-1PHP Associative Array StrucutureNewb2009-12-03T08:27:57Z2009-12-03T08:47:24Z
<p>Is there any thing wrong with this array?</p>
<pre><code>$selects = array(
"getmoney1" => $money["Dimes"],
"getmoney2" => $money["Nickels"],
"getmoney3" => $money["Quarters"]
);
</code></pre>
<p>I am learning, and I want to know more, and how to do it right.</p>
http://stackoverflow.com/questions/1837739/pushing-data-into-array-with-javascript4Pushing data into array with JavaScript.John Jones2009-12-03T04:56:03Z2009-12-03T06:24:44Z
<p>Hi, I'm relatively new to JavaScript and I've been having trouble pushing data into an array.</p>
<p>I have two dynamic vars and I need the array to be formatted like:</p>
<pre><code>var array = [[-373597200000, 315.71], [-370918800000, 317.45], [-368326800000, 317.50]];
</code></pre>
<p>I already have a loop running for each iteration of the vars, I'm just not sure how I put the two vars into the array in the format above. I've tried:</p>
<pre><code>array.push(var1 + "," + var2);
</code></pre>
<p>For each iteration of the loop but it doesn't seem to be working.</p>
<p>So, what's the proper way to push data into an array in the format above?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/521674/initializing-a-list-to-a-known-number-of-elements-in-python3Initializing a list to a known number of elements in PythonJoan Venge2009-02-06T18:58:53Z2009-12-03T03:46:47Z
<p>Right now I am using a list, and was expecting something like:</p>
<p>verts = list (1000)</p>
<p>Should I use array instead?</p>
http://stackoverflow.com/questions/1824118/what-may-cause-losing-object-at-the-other-end-of-a-pointer-in-c1What may cause losing object at the other end of a pointer in c++?derrdji2009-12-01T05:11:31Z2009-12-03T03:27:17Z
<p>EDIT: I have found the error: I did not initialize an array with a size. question can be closed.</p>
<p><hr></p>
<p>I have a class <code>V</code>, and another class <code>N</code>. An object of <code>N</code> will have an array of pointers to objects of class <code>V</code> (say <code>V **vList</code>). So, <code>N</code> has a function like
<code>V **getList();</code>
Now in some function of other classes or simply a driver function, if I say <code>V **theList = (N)n.getList();</code> Q1: <code>theList</code> would be pointing at the 1st element of the array? Given that the size of array is known, can I loop through with index <code>i</code> and say <code>V *oneV = *vList[i]</code>? Please correct me if what I'm doing above is wrong.</p>
<p><hr></p>
<p>I have been using debugger to trace through the whole process of my program running, the thing I found was that after using <code>V *oneV = vList[i]</code>, the value of the pointers in the array, <code>vList</code>, were the same as when they were created, but if I follow the pointer to where it is pointing at, the object was gone. I'm guessing that might be the reason why I am getting seg fault or bus error. Could it be the case? WHY did I 'loose' the object at the other end of a pointer? What did I do wrong?</p>
<p><hr></p>
<p>and yes, I am working on a school assignment, that's why I do not want to print out my codes, I want to finish it myself, but I need help finding a problem. I think I still need explanation on array of pointers. Thank you</p>
http://stackoverflow.com/questions/1836789/most-elegant-way-to-get-the-array-element-by-position0Most elegant way to get the array element by position?AngryHacker2009-12-03T00:05:43Z2009-12-03T02:22:20Z
<p>I have an array:</p>
<pre><code>private int[,] _blocks = new int[6, 4];
</code></pre>
<p>It represents a set of blocks which is 6 deep horizontally and 4 deep vertically. Graphically it looks like this:</p>
<p><img src="http://www.angryhacker.com/toys/array.png" alt="alt text"></p>
<p>I need a function that would take in a number, from 1 to 24 and return the array element that matches. So for number 14, I'd get back _blocks[1, 2];</p>
<p>I've created a simplistic function:</p>
<pre><code>private int GetBlockByPosition(int position)
{
int count = 0;
for (int i = 0; i < 6; i++)
{
for (int j = 0; j < 4; j++)
{
if (++count == position)
return _blocks[i, j];
}
}
return -1;
}
</code></pre>
<p>But this seems very wasteful and smells bad. Is there a more elegant and faster way?</p>
http://stackoverflow.com/questions/1833884/what-lines-this-code-might-throw-a-index-was-outside-the-bounds-of-the-array2What line(s) this code might throw a "Index was outside the bounds of the array" exception?cchampion2009-12-02T16:03:49Z2009-12-02T22:18:54Z
<p>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 be happening. I have narrowed it down to this section of the code by reviewing their log file. I didn't write this code, but it's purpose is to ftp a zip file to a remote server. So the question is....</p>
<p>What line(s) this code might throw a "Index was outside the bounds of the array" exception?</p>
<pre><code>FtpLib.FTPFactory ff = new FtpLib.FTPFactory();
try
{
ff.setRemoteHost(job.FTPHost);
ff.setRemoteUser(job.FTPUser);
ff.setRemotePass(job.FTPPW);
ff.login();
// Execute misc. extra commands
foreach (string command in job.Commands)
{
if (log.IsDebugEnabled)
log.Debug("JOB: " + job.ID + " -- FTP Command \"" + command + "\" sent...");
ff.sendCommand(command);
if (log.IsDebugEnabled)
log.Debug("JOB: " + job.ID + " -- Response: " + ff.getLastMessage());
}
try
{
ff.mkdir(job.FTPRemoteDir);
}
catch (IOException) { }
ff.chdir(job.FTPRemoteDir);
ff.setBinaryMode(true);
if (log.IsInfoEnabled)
log.Info("JOB: " + job.ID + " -- FTP UPLOAD: \"" + zipfile.Name + "\" to \"" + job.FTPHost + "/" + job.FTPRemoteDir + "/\"");
ff.upload(zipfile.FullName);
if (log.IsInfoEnabled)
log.Info("JOB: " + job.ID + " -- Completed.");
bFTPSuccess = true;
break;
</code></pre>
<p>}</p>
<p>Thanks in advance!</p>
<p>UPDATE:
I think we all pretty much agree that the issue is going to be in the FTPLib, I'll see if we have the source for it. I found out this is an obscure bug the customer can't even reproduce consistently, so this will be a fun one pin point. I have added additional debug logging using Exception.StackTrace and Exception.ToString functions. I'll update again once the issue is solved and try to award the correct person with the correct answer, although everyone has made good suggestions. Thanks for the help!</p>
http://stackoverflow.com/questions/1834137/how-to-use-a-c-type-array-as-an-ivar1How to use a c-type array as an ivar?John R Doner2009-12-02T16:34:09Z2009-12-02T18:03:37Z
<p>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 another. </p>
<p>I declare </p>
<pre><code>int spotLocations[10] [10]
</code></pre>
<p>as an ivar. </p>
<p>That much works, but then the @property/@synthesize process never passes muster.</p>
http://stackoverflow.com/questions/1829119/c-pointers-to-arrays-arrays-of-pointers1C++ -- Pointers to Arrays -- Arrays of Pointersdrew-2009-12-01T21:39:47Z2009-12-02T15:06:33Z
<p>Hello,</p>
<p>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.</p>
<p>Suppose I have the following variables in a header file -</p>
<pre><code>int numberOfLinePoints;
D3DXVECTOR3* line; //confused as to what it is
</code></pre>
<p>Then in the implementation C++ file I initialize them as follows -</p>
<pre><code>//both initialized in constructor
numberOfLinePoints = 25;
line = new D3DXVECTOR3[numPoints]; //array of pointers?
</code></pre>
<p><strong>What does my line variable now represent?</strong></p>
<p>As far as I can tell from reading links on stackoverflow it should represent an array of pointers. I then read the following however...</p>
<p><strong>(1)</strong> <a href="http://richardbowles.tripod.com/cpp/cpp18.htm" rel="nofollow">Pointers for Beginners</a></p>
<p>...where <strong>(A)</strong> arrays of pointers, and <strong>(B)</strong> pointers to arrays, are both discussed. This left me confused once again as they both seem to work similarly.</p>
<p>The fact that I define my pointers in a seperate location to where I allocate (correct?) them seems to be where my confusion stems from. <strong>Am I correct that this is an array of pointers to D3DXVECTOR3 objects?</strong></p>
<p><strong>To finish</strong> - if variable line holds information about one line segment, how would I create an array of line segments? I currently have the following -</p>
<pre><code>//HEADER FILE
int numberOfLineSegments;
D3DXVECTOR3** lineCollection; //array of pointers - each of which
//points to an array of pointers?
//CPP FILE
numberOfLineSegments = 8; //constructor
for(i = 0; i < numberOfLineSegments; i++) //initialization
{ //and allocation CORRECT?
lineCollection[i] = new D3DXVECTOR*[numPoints]; //of memory for Y/N
} //lineCollection
VOID createLineSegments(startPoint, endPoint) //could return array instead
{
//pseudo to generate one line segment
while != numberOfLinePoints
line[sentinel++] = interpolate(startPoint, endPoint, time_T)
//pseudo to generate array of line segments
while != numberOfLines
lineCollection[sentinel++] = line
}
</code></pre>
<p>Any help is much appreciated.</p>
http://stackoverflow.com/questions/1833249/when-in-optimization-phase-would-it-be-smart-to-pass-all-array-by-ref2When in optimization phase, would it be smart to pass all array by ref?Itay Moav2009-12-02T14:29:59Z2009-12-02T14:46:38Z
<p>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 happens to them after I pass them to the function) by ref?</p>