One of the problems I faced while I developing a information retrieval system for Arabic language using the neural network is how to sort the 2 dimensional array? After a deep thinking and useless searching I decide to go and make it by myself. This is a simple code, not as I used because the one I used truly complex and work with dynamic allocation arrays so I develop this simple one and I’m sure it will help a lot of people.
Sorting with linear lists
(Popularity: ) : This piece of code is a doubly linked multilist...at least it's how I call it in french :P It sorts item by alphabetical order. It lets you add and remove objects(in this case Person). It could be used to do ... XML Dynamic Sort
(Popularity: ) : This code shows how to read an XML database, and sort its contents dynamically (like in explorer). This code uses the ASP:XML control and also demonstrates ViewState variables. Sort ListView
(Popularity: ) : I try many time to Sort my data in the listView Control. But The Listview Only sort the First Column. This is for sorting purpose for all column. It sorts Numeric as well as Alphabet. Try it.. A sortable Hashtable - Hashlist
(Popularity: ) : This Hashlist-Class stores items in an key-value based style. You are able to access this items by key or index. And you can sort the list either by Key or by Value. Maybe this code is useful for you. It ... Basic Sorting Algorithm Analysis
(Popularity: ) : This source code is about the basic sorting algorithm implemented in C#. The algorithms included are Bubble Sort, Insertion Sort, Selection Sort. User can trace how's the sorting algorithm works. Besides running each sorting individually, user can also run the ...