Tagged Questions

0
votes
4answers
49 views

Sort a CSV by date in Python

Hi! I'm trying to sort a CSV file and I want the items sorted by date in reverse order: newest first. def SortCsvByField( filename, fieldNo, sep = ',' ): records = [line.split …
1
vote
14answers
399 views

What is the fastest sorting algorithm in C++?

If I need to sort 150,000 entries what would be the fastest way for a beginner in C++ to sort that data? All I have learned so far is bubble sort and I know that isn't that effici …
1
vote
5answers
171 views

What’s wrong with my Dutch National Flag algorithm?

I'm trying to turn an array like this: 0, 1, 2, 2, 1, 0, 1, 0, 0, 1, 2 into this: 0 0 0 0 1 1 1 1 2 2 2 Here is my code: public static int[] sortDNF(int[] tape) { int small …
2
votes
2answers
69 views

C# Sort list while also returning the original index positions?

Hi, I'm interested in sorting a collection, but also returning an index which can be used to map to the original position in the collection (before the sort). Let me give an exam …
0
votes
1answer
37 views

Sorting a DataGridView by Number or Date in a Windows Form C#

I have a DataGridView on a C# Forms Application I'm trying to sort. Originally I wanted to sort by the date, but when sorting it treats it like a string. Example: 22/9/2009 14/4/ …
0
votes
1answer
52 views

Help Determining This Sort Algorithm

I came across this sort algorithm when looking for a function to sort a collection of objects in VBA by a property of the object. In order to make sure that I understand all aspec …
0
votes
2answers
66 views

Linux Sort command

Hello, I would like to know which sorting algorithm the linux SORT command uses?
0
votes
1answer
26 views

Performance regarding return type for LINQ query compatible with automatic sorting

Hi! this isn't really an issue, but more of a concern that I would appreciate some input on please. Winforms C# .net3.5[sp1] Visual Studio 2008 using Linq2Sql (more specifically P …
0
votes
5answers
52 views

Fast way to extract portions of array?

I have a large array in PHP. It contains strings that are split into a kind of categories using underscores: category1_property category1_category2_category3 category2_category3 …
2
votes
5answers
67 views

Bash and sort files in order

Hi, with a previous bash script I created a list of files: data_1_box data_2_box ... data_10_box ... data_99_box the thing is that now I need to concatenate them, so I tried l …
0
votes
3answers
66 views

Sorting of 2 or more massive resultsets ?

I need to be able to sort multiple intermediate result sets and enter them to a file in sorted order. Sort is based on a single column/key value. Each result set record will be lis …
0
votes
4answers
25 views

Fetch data from multiple tables and sort all by their time

Hello, I'm creating a page where I want to make a history page. So I was wondering if there is any way to fetch all rows from multiple tables and then sort by their time? Every tab …
0
votes
1answer
36 views

How do i go about matching three fields from two tables in order to update the same tables in case of match

Given two tables A and B in a MySQL Database, how can one update a field in a row of table A if and only if certain fields in the fore-mentioned row in table A exactly match fields …
0
votes
2answers
20 views

Database of readings for Japanese words

Does anyone know of an off-the-shelf database that provides phonetic (kana) readings for Japanese words?
0
votes
2answers
96 views

How to filter a list?

This is a method that should take already assigned users out of a list and keep non-assigned ones in a list. The GuidList has the userId added to it on a button click. The profile …

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