active questions tagged sorting - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T13:53:06Z http://stackoverflow.com/feeds/tag/sorting http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1906484/sorting-in-listview-with-object-data-source 0 Sorting in listview with object data source Radhi 2009-12-15T10:25:26Z 2009-12-15T10:38:30Z <p>Hi i am working in asp.net web application for social networking. i have sued VS2008 and sqlserver 2008[.net 3.5]</p> <p>in this website we user 3-tier architecture. so we passed businessobject to UI.</p> <p>My listview is binded with object data source. now i have to implement sorting in listview. please can anyone suggest me best method to do sorting in ListView with Object data source</p> http://stackoverflow.com/questions/1904269/how-to-fill-a-dataset-after-getting-a-gridview 0 How to fill a dataset after getting a gridview? unknown (google) 2009-12-14T23:27:09Z 2009-12-15T04:51:35Z <p>I have a gridview which has many columns.. the columns are got separately and displayed in a gridview.</p> <p>now i need to sort this gridview but i cannot do that.... i have found a way but i will need to get the gridview in a datatable or a dataset.... is there a a way to do this?</p> <pre><code>DataSet ds= new DataSet(); ds = Gridview1.???? </code></pre> <p>please help..</p> http://stackoverflow.com/questions/1903462/how-can-i-zip-sort-parallel-numpy-arrays 3 How can I "zip sort" parallel numpy arrays? YGA 2009-12-14T21:00:03Z 2009-12-15T03:33:04Z <p>If I have two parallel lists and want to sort them by the order of the elements in the first, it's very easy:</p> <pre><code>&gt;&gt;&gt; a = [2, 3, 1] &gt;&gt;&gt; b = [4, 6, 2] &gt;&gt;&gt; a, b = zip(*sorted(zip(a,b))) &gt;&gt;&gt; print a (1, 2, 3) &gt;&gt;&gt; print b (2, 4, 6) </code></pre> <p>How can I do the same using numpy arrays without unpacking them into conventional Python lists?</p> http://stackoverflow.com/questions/1903509/how-to-sort-in-gridview-using-template-fields 0 how to sort in gridview using template fields unknown (google) 2009-12-14T21:08:24Z 2009-12-15T02:41:32Z <p>The sorting works fine when u fill the gridview using SQL datasource in the aspx page...</p> <p>but now i am using template field and the columns are filled separately in the codebehind and the sorting is not working...</p> <p>my code is</p> <pre><code>&lt;asp:GridView ID="GridView1" runat="server" AllowSorting="True" AutoGenerateColumns="False" ondatabound="GridView1_DataBound" onrowdatabound="GridView1_RowDataBound"&gt; &lt;Columns&gt; &lt;asp:TemplateField HeaderText="File Name" ItemStyle-Width="40%" &gt; &lt;EditItemTemplate&gt; &lt;asp:TextBox ID="TextBox1" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;/EditItemTemplate&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="Label1" runat="server"&gt;&lt;/asp:Label&gt; &lt;/ItemTemplate&gt; &lt;HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" /&gt; &lt;/asp:TemplateField&gt; &lt;asp:TemplateField HeaderText="Failure Count" ItemStyle-Width="10%" &gt; &lt;EditItemTemplate&gt; &lt;asp:TextBox ID="TextBox3" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;/EditItemTemplate&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="Label3" runat="server"&gt;&lt;/asp:Label&gt; &lt;/ItemTemplate&gt; &lt;HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" /&gt; &lt;ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" /&gt; &lt;/asp:TemplateField&gt; &lt;/Columns&gt;&lt;/GridView&gt; </code></pre> <p>and my codebehind is:</p> <pre><code> DataTable dt = new DataTable(); SqlConnection connection = new SqlConnection(); connection.ConnectionString = ConfigurationManager.ConnectionStrings["SumooHAgentDBConnectionString"].ConnectionString; connection.Open(); SqlCommand sqlCmd = new SqlCommand("SELECT FileName,FailureCount from Files where MachineID=@strID , connection); SqlDataAdapter sqlDa = new SqlDataAdapter(sqlCmd); sqlCmd.Parameters.AddWithValue("strID", strID); sqlDa.Fill(dt); if (dt.Rows.Count &gt; 0) { for (int i = 0; i &lt; dt.Rows.Count; i++) { string nameoffiles = dt.Rows[i]["FileName"].ToString(); buFailureCode.Add(code); string count = dt.Rows[i]["BuFailureCount"].ToString(); buFailureCount.Add(count); } } connection.Close(); } protected void GridView1_DataBound(object sender, EventArgs e) { if (namesOfFiles.Count != 0) { for (int i = 0; i &lt; namesOfFiles.Count; i++) { GridViewRow myRow = GridView1.Rows[i]; Label Label1 = (Label)myRow.FindControl("Label1"); Label Label3 = (Label)myRow.FindControl("Label3"); Label1.Text = namesOfFiles[i].ToString(); Label3.Text = buFailureCount[i].ToString(); }}} </code></pre> http://stackoverflow.com/questions/1902311/problem-sorting-using-member-function-as-comparator 1 problem sorting using member function as comparator Navid 2009-12-14T17:31:35Z 2009-12-14T21:33:23Z <p>trying to compile the following code I get this compile error, what can I do?</p> <p><hr></p> <blockquote> <p>ISO C++ forbids taking the address of an unqualified or parenthesized non-static member function to form a pointer to member function.</p> </blockquote> <pre><code>class MyClass { int * arr; // other member variables MyClass() { arr = new int[someSize]; } doCompare( const int &amp; i1, const int &amp; i2 ) { // use some member variables } doSort() { std::sort(arr,arr+someSize, &amp;doCompare); } }; </code></pre> http://stackoverflow.com/questions/1374723/remembering-the-original-index-of-elements-after-sorting 0 Remembering the "original" index of elements after sorting Amit 2009-09-03T17:06:59Z 2009-12-14T20:45:07Z <p>Say, I employ merge sort to sort an array of Integers. Now I need to also remember the positions that elements had in the unsorted array, initially. What would be the best way to do this? </p> <p>A very very naive and space consuming way to do would be to (in C), to maintain each number as a "structure" with another number storing its index:</p> <pre><code>struct integer { int value; int orig_pos; }; </code></pre> <p>But, obviously there are better ways. Please share your thoughts and solution if you have already tackled such problems. Let me know if you would need more context. Thank you.</p> http://stackoverflow.com/questions/302749/jquery-tablesorter-problem 6 JQuery tablesorter problem Don 2008-11-19T17:43:31Z 2009-12-14T20:01:25Z <p>Hi,</p> <p>I'm having a couple of problems with the JQuery <a href="http://tablesorter.com/docs/" rel="nofollow">tablesorter</a> plugin. If you click on a column header, it should sort the data by this column, but there are a couple of problems:</p> <ol> <li>The rows are not properly sorted (1, 1, 2183, 236)</li> <li>The total row is included in the sort</li> </ol> <p>Regarding (2), I can't easily move the total row to a table footer, because the HTML is generated by the <a href="http://displaytag.sourceforge.net/11/" rel="nofollow">displaytag</a> tag library over which I have limited control.</p> <p>Regarding (1), I don't understand why the sort doesn't work as I've used exactly the same JavaScript shown in the simplest example in the <a href="http://tablesorter.com/docs/#Getting-Started" rel="nofollow">tablesorter tutorials</a>. </p> <p>In fact, there's only a single line of JS code, which is:</p> <pre><code>&lt;body onload="jQuery('#communityStats').tablesorter();"&gt; </code></pre> <p>Thanks in advance, Don</p> http://stackoverflow.com/questions/1894242/advanced-non-common-efficient-sorting-algorithms 1 Advanced/Non common Efficient Sorting Algorithms Enrique 2009-12-12T18:09:23Z 2009-12-14T16:49:37Z <p>I know there are some like:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Bubble%5Fsort" rel="nofollow">Bubble sort</a> </li> <li><a href="http://en.wikipedia.org/wiki/Insertion%5Fsort" rel="nofollow">Insertion sort</a></li> <li><a href="http://en.wikipedia.org/wiki/Shell%5Fsort" rel="nofollow">Shell sort</a> </li> <li><a href="http://en.wikipedia.org/wiki/Merge%5Fsort" rel="nofollow">Merge sort</a></li> <li><a href="http://en.wikipedia.org/wiki/Heapsort" rel="nofollow">Heapsort</a></li> <li><a href="http://en.wikipedia.org/wiki/Quicksort" rel="nofollow">Quicksort</a> </li> <li><a href="http://en.wikipedia.org/wiki/Bucket%5Fsort" rel="nofollow">Bucket sort</a></li> <li><a href="http://en.wikipedia.org/wiki/Radix%5Fsort" rel="nofollow">Radix sort</a> </li> <li>Distribution sort </li> <li>Shuffle sort</li> </ul> <p>And there are some impractical ones like:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Bogosort" rel="nofollow">Bogosort</a> </li> <li>RandomSort</li> </ul> <p>Some of the above use comparisons and others do not.</p> <p>Do you know which other Efficient Algorithms or Techniques for sorting numbers exist? You can suggest me one even if it is not applicable in real life or it is impractical but it must be efficient, but it would be better if it is a computational solution.</p> http://stackoverflow.com/questions/1901801/xslt-global-count-of-grouped-items 0 XSLT Global count of grouped items Chris 2009-12-14T16:06:42Z 2009-12-14T16:32:15Z <p>Hi there,</p> <p>I have a set of items which i am grouping using the muenchian method using keys. This is working great however when i try to do things with the first x number of items it is doing it on the x number of items in each group rather than across the whole set of results. How would i get the individual position of each item accross the whole collection?</p> <pre><code> &lt;xsl:key name="pictures-by-productid" match="/dsQueryResponse/Rows/Row" use="@ProductId" /&gt; &lt;xsl:template match="/"&gt; &lt;div style="border:1px solid red; float:left;"&gt; &lt;xsl:apply-templates select="/" mode="sub"&gt; &lt;/xsl:apply-templates&gt; &lt;/div&gt; &lt;/xsl:template&gt; </code></pre> <p>and the second template</p> <pre><code> &lt;xsl:template match="/" mode="sub"&gt; &lt;xsl:for-each select="/dsQueryResponse/Rows/Row[count(. | key('pictures-by-productid', @ProductId)[1]) = 1]"&gt; &lt;xsl:for-each select="key('pictures-by-productid', @ProductId)"&gt; &lt;xsl:sort select="@PictureType" /&gt; &lt;div style="float:left; margin:2px;"&gt; &lt;img src="{@ThumbNailUrl}" width="58" /&gt; &lt;br /&gt; Download &lt;xsl:number value="position()" format="1. " /&gt; &lt;xsl:value-of select="." /&gt; &lt;/div&gt; &lt;/xsl:for-each&gt; &lt;/xsl:for-each&gt; &lt;/xsl:template&gt; </code></pre> <p>Thanks</p> <p>Chris</p> http://stackoverflow.com/questions/1820267/default-list-of-django-built-in-middleware 0 Default list of Django built-in middleware Boldewyn 2009-11-30T14:51:10Z 2009-12-14T13:22:55Z <p>Django comes with a <a href="http://docs.djangoproject.com/en/dev/ref/middleware/" rel="nofollow">list of built-in middleware</a>, but if one wants to use all (or most) of them, he has to work through tons of docs in order to get the right sorting in the settings.py file.</p> <p>Is there an optimal default order of <em>all</em> built-in Django 1.1 middleware classes? I.e., something to copy'n'paste into settings.py:</p> <pre><code>MIDDLEWARE_CLASSES = ( # perfect order here please ;-) ) </code></pre> <p>Alternative answer: Are there multiple possible orderings and what would be the difference?</p> <p>By the way: The order <em>is</em> significant, but I'm only aware of some of the default dependencies, like SessionMiddleware before AuthenticationMiddleware.</p> http://stackoverflow.com/questions/1880543/how-to-sort-an-array-which-is-mostly-sorted 2 how to sort an array which is mostly sorted behrooz 2009-12-10T12:06:23Z 2009-12-14T11:41:42Z <p>i have an array like this:<br> 1,2,3,5,6,4 it is 99% sorted and has 40K elements.<br> i can put them in an array, list, linked list, ...<br> but i don`t know the fastest way to sort them!</p> http://stackoverflow.com/questions/1899500/jquery-sorting-problem-in-datatables-with-anchor-tag 0 jQuery sorting problem in datatables with anchor tag shaz 2009-12-14T07:42:05Z 2009-12-14T08:01:32Z <p>I used the jQuery datatable plugin in sort the table data. The sorting works fine if a column contains simple text. If I put any anchor tag condition on a text then the column sorting does not sort properly. </p> <p>I displayed the values in following manner:</p> <pre><code>&lt;td&gt;&lt;?php if ($allAptArr[$d][27]['staffinactive'] == 1) { ?&gt; &lt;?=ucwords(stripslashes($allAptArr[$d][5]['staff_name']));?&gt; &lt;?php } else { ?&gt; &lt;a href='#' onClick="redirectToStaff('&lt;?=$allAptArr[$d][10]['staff_id']?&gt;');"&gt; &lt;?=ucwords(stripslashes($allAptArr[$d][5]['staff_name']));?&gt; &lt;/a&gt; &lt;?php } ?&gt; &lt;/td&gt; </code></pre> <p>with this code the column sorting fails.</p> http://stackoverflow.com/questions/1898621/jquery-datatable-plugin-doesnt-seem-to-sort-columns-with-links-properly 0 jquery datatable plugin doesn't seem to sort columns with links properly oo 2009-12-14T02:17:15Z 2009-12-14T02:22:51Z <p>i have a column that was pure text and the sorting worked fine but when i cahnge the column data to html regular links, the sorting seems quite random and broken. I couldn't find any other documentation on this issue on the site.</p> <p><a href="http://www.datatables.net/usage/features" rel="nofollow">http://www.datatables.net/usage/features</a></p> <p>any suggestions?</p> http://stackoverflow.com/questions/1896674/python-how-to-read-huge-text-file-into-memory 3 Python: How to read huge text file into memory asmaier 2009-12-13T14:34:04Z 2009-12-13T22:44:28Z <p>I'm using Python 2.6 on a Mac Mini with 1GB RAM. I want to read in a huge text file</p> <pre><code>$ ls -l links.csv; file links.csv; tail links.csv -rw-r--r-- 1 user user 469904280 30 Nov 22:42 links.csv links.csv: ASCII text, with CRLF line terminators 4757187,59883 4757187,99822 4757187,66546 4757187,638452 4757187,4627959 4757187,312826 4757187,6143 4757187,6141 4757187,3081726 4757187,58197 </code></pre> <p>So each line in the file consists of a tuple of two comma separated integer values. I want to read in the whole file and sort it according to the second column. I know, that I could do the sorting without reading the whole file into memory. But I thought for a file of 500MB I should still be able to do it in memory since I have 1GB available.</p> <p>However when I try to read in the file, Python seems to allocate a lot more memory than is needed by the file on disk. So even with 1GB of RAM I'm not able to read in the 500MB file into memory. My Python code for reading the file and printing some information about the memory consumption is:</p> <pre><code>#!/usr/bin/python # -*- coding: utf-8 -*- import sys infile=open("links.csv", "r") edges=[] count=0 #count the total number of lines in the file for line in infile: count=count+1 total=count print "Total number of lines: ",total infile.seek(0) count=0 for line in infile: edge=tuple(map(int,line.strip().split(","))) edges.append(edge) count=count+1 # for every million lines print memory consumption if count%1000000==0: print "Position: ", edge print "Read ",float(count)/float(total)*100,"%." mem=sys.getsizeof(edges) for edge in edges: mem=mem+sys.getsizeof(edge) for node in edge: mem=mem+sys.getsizeof(node) print "Memory (Bytes): ", mem </code></pre> <p>The output I got was:</p> <pre><code>Total number of lines: 30609720 Position: (9745, 2994) Read 3.26693612356 %. Memory (Bytes): 64348736 Position: (38857, 103574) Read 6.53387224712 %. Memory (Bytes): 128816320 Position: (83609, 63498) Read 9.80080837067 %. Memory (Bytes): 192553000 Position: (139692, 1078610) Read 13.0677444942 %. Memory (Bytes): 257873392 Position: (205067, 153705) Read 16.3346806178 %. Memory (Bytes): 320107588 Position: (283371, 253064) Read 19.6016167413 %. Memory (Bytes): 385448716 Position: (354601, 377328) Read 22.8685528649 %. Memory (Bytes): 448629828 Position: (441109, 3024112) Read 26.1354889885 %. Memory (Bytes): 512208580 </code></pre> <p>Already after reading only 25% of the 500MB file, Python consumes 500MB. So it seem that storing the content of the file as a list of tuples of ints is not very memory efficient. Is there a better way to do it, so that I can read in my 500MB file into my 1GB of memory?</p> http://stackoverflow.com/questions/1412751/find-largest-and-second-largest-element-in-a-range 3 Find largest and second largest element in a range Jacob 2009-09-11T19:07:05Z 2009-12-13T16:35:04Z <p>How do I find the above without removing the largest element and searching again? Is there a more efficient way to do this? It does not matter if the these elements are duplicates.</p> http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort 10 Generating sorted random ints without the sort? Phil H 2009-12-08T10:19:17Z 2009-12-13T02:42:55Z <p>Just been looking at a code golf question about <a href="http://stackoverflow.com/questions/350885/create-sort-and-print-a-list-of-100-random-ints-in-the-fewest-chars-of-code">generating a sorted list of 100 random integers</a>. What popped into my head, however, was the idea that you could generate instead a list of positive deltas, and just keep adding them to a running total, thus:</p> <pre><code>deltas: 1 3 2 7 2 ints: 1 4 6 13 15 </code></pre> <p>In fact, you would use floats, then normalise to fit some upper limit, and round, but the effect is the same.</p> <p>Although it wouldn't make for shorter code, it would certainly be faster without the sort step. But the thing I have no real handle on is this: <b>Would the resulting distribution of integers be the same as generating 100 random integers from a uniformly distributed probability density function?</b></p> <p>Edit: A sample script:</p> <pre><code>import random,sys running = 0 max = 1000 deltas = [random.random() for i in range(0,11)] floats = [] for d in deltas: running += d floats.append(running) upper = floats.pop() ints = [int(round(f/upper*max)) for f in floats] print(ints) </code></pre> <p>Whose output (fair dice roll) was:</p> <pre><code>[24, 71, 133, 261, 308, 347, 499, 543, 722, 852] </code></pre> <p><b>UPDATE:</b> <a href="http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort/1866177#1866177">Alok's answer</a> and <a href="http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort/1866055#1866055">Dan Dyer's comment</a> point out that using an <a href="http://en.wikipedia.org/wiki/Exponential_distribution" rel="nofollow">exponential distribution</a> for the deltas would give a uniform distribution of integers.</p> http://stackoverflow.com/questions/895371/bubble-sort-homework 54 Bubble Sort Homework joshhunt 2009-05-21T21:47:24Z 2009-12-12T21:04:01Z <p>In class we are doing sorting algorithms and, although I understand them fine when talking about them and writing pseudocode, I am having problems writing actual code for them.</p> <p>This is my attempt in Python:</p> <pre><code>mylist = [12, 5, 13, 8, 9, 65] def bubble(badList): length = len(badList) - 1 unsorted = True while unsorted: for element in range(0,length): unsorted = False if badList[element] &gt; badList[element + 1]: hold = badList[element + 1] badList[element + 1] = badList[element] badList[element] = hold print badList else: unsorted = True print bubble(mylist) </code></pre> <p>Now, this (as far as I can tell) sorts correctly, but once it finishes it just loops indefinitely.</p> <p>How can this code be fixed so the function finishes properly and correctly sorts a list of any (reasonable) size?</p> <p>P.S. I know I should not really have prints in a function and I should have a return, but I just have not done that yet as my code does not really work yet.</p> http://stackoverflow.com/questions/1857404/excel-find-speed-vs-vba-binary-search 1 Excel Find Speed vs. VBA binary Search? ExcelCyclist 2009-12-07T02:10:28Z 2009-12-12T12:15:03Z <p>How good/fast is Excel VBA's Find vs. binary search? My platform is Office 11|2003 and I'll be searching for strings against Column A on three sheets of values. Total number of rows ~140,000</p> <p>If worth it which Library &amp; functions should I reference to do the sorting and then the binary search? Binary searching strings/text reportedly has potential problems. </p> <blockquote> <p>... one thing must be noted. Using binary search formulas with sortedtextrequires caution. <a href="http://www.mrexcel.com/forum/showthread.php?t=84002" rel="nofollow">Aladin A., Excel MVP</a></p> </blockquote> <p>Excel Find:</p> <pre><code>Worksheets(1).Range("A:A").Find("PN-String-K9", LookIn:=xlValues, LookAt:=xlWhole) </code></pre> http://stackoverflow.com/questions/1886827/comparing-chararrays-in-linked-list-in-the-c-programming-language 0 Comparing chararrays in linked list in the C programming language. Chris_45 2009-12-11T09:22:45Z 2009-12-11T09:44:26Z <p>How do you compare and sort chararrays in a linked list, cant you compare like this 'Smith' > 'Andersson' ?</p> <pre><code>struct person { char name[20]; struct person *nextPerson; }; . void createNode(PersonPtr *sPtr, struct person t[]){ PersonPtr newPtr; /* pointer to new node */ PersonPtr previousPtr; /* pointer to previus node in list */ PersonPtr currentPtr; /* pointer to current node in list */ . /* loop to find correct location in the list */ while (currentPtr != NULL &amp;&amp; t-&gt;name &gt; currentPtr-&gt;name) { /* this will not sort on name */ previousPtr = currentPtr; /* walk to... */ currentPtr = currentPtr-&gt;nextPerson; /* ...next node */ }/* end while */ </code></pre> http://stackoverflow.com/questions/1886795/preserve-multi-column-sort-in-advanceddatagrid-with-dataprovider-as-groupingcolle 0 Preserve multi-column sort in AdvancedDataGrid with dataProvider as GroupingCollection Rahul Singhai 2009-12-11T09:18:51Z 2009-12-11T09:18:51Z <p>I have three attributes in my XML object: last name, first name, and age. My sample XML looks like:</p> <pre><code>&lt;dataXML&gt; &lt;info last="Abc" first="Def" age="20"/&gt; &lt;info last="Abc" first="Hij" age="10"/&gt; &lt;info last="Xyz" first="Klm" age="25"/&gt; &lt;info last="Xyz" first="Opq" age="64"/&gt; &lt;info last="Xyz" first="Rst" age="08"/&gt; &lt;/dataXML&gt; </code></pre> <p>I am using Grouping Collection and AdvancedDataGrid to show the data. My problem is to preserve multi-column sort. After a refresh happens, the user selected sorting order goes away, and the grid gets sorted by first column only. So suppose, user has sorted the table, first ascending by "Age" and then descending by "Name"; after a refresh happens, the grid again gets sorted ascending by "Name". I don't want the refresh event to change the sort order, only the data should get refreshed.</p> <p>Thanks in advance.</p> <p>P.S. I can't use any other datatype like ArrayCollection, to store the data.</p> <p>Part of my code looks as follows:</p> <pre><code>&lt;mx:Script&gt; &lt;![CDATA[ [Bindable] private var dataXML:XMLListCollection = new XMLListCollection(); private function refresh(data:Object):void { dataXML.source = XML(data.result.value).info; gc.refresh(); adGrid.dataProvider = gc; adGrid.validateNow(); adGrid.dataProvider.refresh(); } private function nameCompareFunction(a:XML, b:XML):int { return ObjectUtil.stringCompare(a.attribute("last") + a.attribute("first"), b.attribute("last") + b.attribute("first")); } private function valueSortCompareFunction(a:XML, b:XML):int { return ObjectUtil.numericCompare(Number(a.attribute("age")), Number(b.attribute("age"))); } ]]&gt; &lt;/mx:Script&gt; &lt;Control:AdvancedDataGrid id="adGrid"&gt; &lt;Control:dataProvider&gt; &lt;mx:GroupingCollection id="gc" source="{dataXML}"&gt; &lt;mx:grouping&gt; &lt;mx:Grouping&gt; &lt;mx:GroupingField name="@last" compareFunction="nameCompareFunction"/&gt; &lt;/mx:Grouping&gt; &lt;/mx:grouping&gt; &lt;/mx:GroupingCollection&gt; &lt;/Control:dataProvider&gt; &lt;Control:columns&gt; &lt;mx:AdvancedDataGridColumn id="ADGCName" dataField="@first" headerText="Name" wordWrap="true"/&gt; &lt;mx:AdvancedDataGridColumn id="ADGCAge" dataField="@age" headerText="Age" sortCompareFunction="valueSortCompareFunction"/&gt; &lt;/Control:columns&gt; &lt;/Control:AdvancedDataGrid&gt; </code></pre> http://stackoverflow.com/questions/1886475/sorting-a-tables-first-column-after-using-jquery-uis-sortable 1 Sorting a tables first column after using jQuery UI's sortable? baker 2009-12-11T07:48:27Z 2009-12-11T07:52:19Z <p>I got a table which uses jQuery UI's sortable. The first column contains the order number of each row. How do I automatically sort the numbers (in ascending order) in the first column when I sort the rows? This means that only the numbers in the first column will be sorted.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/45888/what-is-the-most-efficient-way-to-sort-an-html-selects-options-by-value-while-p 0 What is the most efficient way to sort an Html Select's Options by value, while preserving the currently selected item? travis 2008-09-05T14:05:34Z 2009-12-11T01:51:28Z <p>I have jQuery but I'm not sure if it has any built-in sorting helpers. I could make a 2d array of each item's <code>text</code>, <code>value</code>, and <code>selected</code> properties, but I don't think that javascript's built in <code>Array.sort()</code> would work correctly.</p> http://stackoverflow.com/questions/1883264/database-sort-vs-programmatic-java-sort 2 database sort vs. programmatic java sort Moro 2009-12-10T19:11:28Z 2009-12-10T23:19:50Z <p>hi, I want to get data from the database(MySQL) by JPA, I wand it sorted by some column value,</p> <p>So, what is the best practice, to:</p> <p>Retrieve the data from the database as list of objects (JPA), then sort it programmatically using some java APIs.</p> <p>OR</p> <p>Let the database sort it by using a sorting select query.</p> <p>??</p> <p>thanx in advance</p> http://stackoverflow.com/questions/1884713/ruby-sortby-help-unpredictable-object-attribute 1 Ruby sort_by help unpredictable object attribute engage2245 2009-12-10T23:02:41Z 2009-12-10T23:07:36Z <p>I have an array with 2 different types of objects. They all have similar properties, like ratings / title etc...</p> <p>An example is:</p> <p><code>array = array.sort_by { |o| [o.type1.rating] }</code></p> <p>Sometimes the array has 2 object types type1 and type2 is there any way to sort both of them using the sort_by method?</p> http://stackoverflow.com/questions/1879887/sorting-grouped-nodes-by-taxonomy-term 0 Sorting grouped nodes by taxonomy term andersandersson666 2009-12-10T09:44:48Z 2009-12-10T13:29:24Z <p>Ok, here's the problem: I have a list of contacts, which i have created in views, that are grouped by taxonomy terms like so:</p> <pre> (term:) Staff: (node:) John Doe john@doe.com (node:) Jane Doe jane@doe.com (term:) Management: Fred Doe fred@doe.com and so on... </pre> <p>As it is now, i have no idea what decides the order of the taxonomy terms (ie: why is the 'Staff' nodes coming before the 'Management nodes').</p> <p>So what i need to do is to be able to sort the order of the terms, and also the order of the nodes in each 'category' (or what you would call it).</p> <p>I have tried to sort the terms by weight, but the only thing that happens is that i get duplicated nodes output, and nothing happens with the order of the actual terms.</p> <p>As for the order of the nodes, i was thinking that maybe a hidden CCK-field with some sort of weight, but i dont know. But the biggest problem is still the order of the categories.</p> <p>If anyone has an answer to this it would be very helpful.</p> <p>Thank you.</p> <p><hr></p> <p>EDIT:</p> <p>Strange, i tried that before i asked the question, but now it seems to work. However i still get duplicated nodes when i sort by taxonomy weight, for some reason. I really need to get rid of those. Heres how my view setup look, if its any help: <pre> Fields: taxonomy=all terms (limited to one vocabulary) image attach content </p> <p>Sort criteria: Taxonomy weight:descending </p> <p>Filters: Taxonomy term id(with depth) // to filter out what page it belongs Node type : contact node published : yes </pre> dont know if that information helps at all</p> <p>/Anders</p> http://stackoverflow.com/questions/1879562/sorting-vector-in-java 2 Sorting vector in java karthickbabu 2009-12-10T08:46:30Z 2009-12-10T10:15:43Z <p>I want to sort a vector contains like <code>[a,b,1,3,5,z]</code> both ascending and descending on Java ME, i.e. without using function like <code>Collections.sort()</code> </p> http://stackoverflow.com/questions/1877461/best-item-from-list-based-on-3-variables 0 Best item from list based on 3 variables J3nnings 2009-12-09T22:46:08Z 2009-12-09T23:47:29Z <p>Say I have the following for a bunch of items.</p> <ul> <li>item position</li> <li>item size</li> <li>item length</li> </ul> <p>A smaller position is better, but a larger length and size are better.</p> <p>I want to find the item that has the smallest position, largest length and size.</p> <p>Can I simply calculate a value such as (total - position) * size * length for each item, and then find the item with the largest value? Would it be better to work off percentages?</p> http://stackoverflow.com/questions/1872910/save-and-get-arbitrary-sort-order-in-mssql 1 Save and get arbitrary sort order in MSSQL Martin Larsson 2009-12-09T10:12:43Z 2009-12-09T11:22:20Z <p>My client wants to sort products by drag &amp; drop. The drag &amp; drop part is easy with javascript. </p> <p>My problem is how do I save and get the sort order?</p> <p>I'm using .net c# and mssql 2008. </p> <p>When I move a product and drop it in a new position I get the id of the product that's moved, product in front and product behind. With this data I want to update the sort order of products.</p> <p>I was thinking of adding a field with position, but then I guess I have to update every item when position changes.</p> <p>I would be grateful for any suggestions.</p> http://stackoverflow.com/questions/1872329/storing-python-dictionary-entries-in-the-order-they-are-pushed 2 Storing Python dictionary entries in the order they are pushed Arrieta 2009-12-09T08:04:00Z 2009-12-09T11:10:18Z <p>Fellows:</p> <p>A Python dictionary is stored in no particular order (mappings have no order), e.g.,</p> <pre><code>&gt;&gt;&gt; myDict = {'first':'uno','second':'dos','third':'tres'} myDict = {'first':'uno','second':'dos','third':'tres'} &gt;&gt;&gt; myDict myDict {'second': 'dos', 'third': 'tres', 'first': 'uno'} </code></pre> <p>While it is possible to retrieve a sorted list or tuple from a dictionary, I wonder if it is possible to make a dictionary store the items in the order they are passed to it, in the previous example this would mean having the internal ordering as <code>{'first':'uno','second':'dos','third':'tres'}</code> and no different.</p> <p>I need this because I am using the dictionary to store the values as I read them from a configuration file; once read and processed (the values are altered), they have to be written to a new configuration file in the same order as they were read (this order is not alphabetical nor numerical).</p> <p>Any thoughts?</p> <p><strong>Edit</strong>: Please notice that I am not looking for secondary ways to retrieve the order (like lists), but of ways to make a dictionary be ordered in itself (as it will be in upcoming versions of Python).</p> http://stackoverflow.com/questions/1868197/actionscript-sorting-arraycollection-by-date-yyyy-mm-dd 0 Actionscript: Sorting ArrayCollection by date: YYYY-MM-DD Yozef 2009-12-08T16:38:46Z 2009-12-08T22:50:54Z <p>I have an ArrayCollection of Objects. Each Object has the following keys/values:</p> <pre><code>{date: 2009-12-01, visits=13555, bouceRate=45} {date: 2009-12-05, visits=46955, bouceRate=45} {date: 2009-12-06, visits=13685, bouceRate=45} {date: 2009-12-02, visits=13685, bouceRate=45} {date: 2009-12-04, visits=68755, bouceRate=45} {date: 2009-12-03, visits=35875, bouceRate=45} </code></pre> <p>I need to sort this ArrayCollection by date, so it would be from past to present - like so:</p> <pre><code>{date: 2009-12-01, visits=13555, bouceRate=45} {date: 2009-12-02, visits=13685, bouceRate=45} {date: 2009-12-03, visits=35875, bouceRate=45} {date: 2009-12-04, visits=68755, bouceRate=45} {date: 2009-12-05, visits=46955, bouceRate=45} {date: 2009-12-06, visits=13685, bouceRate=45} </code></pre> <p><hr></p> <p>I have tried the following with no prevail (not sorting):</p> <pre><code>var dateSort:Sort = new Sort(); dateSort.fields = [new SortField("date", false, false, true)]; newAreaChartData.sort = dateSort; newAreaChartData.refresh(); // traceout for (var i:int = 0; i &lt;newAreaChartData.length; i++) trace ("Object #" + i + ": " + ObjectUtil.toString(newAreaChartData.getItemAt(i))); </code></pre>