QuickSort is not always the most efficient - it depends on distribution of data and its possible to find cases that increases its runtime badly.
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
FFS Microsoft
Collapse
X
-
-
Just look how they swap values in their sort:
byte item = items[i];
items[i] = items[j];
items[j] = item;
They use temporary variable to do that, no doubt this requires little thinking
Comment
-
"know better, but I am not the best programmer out there" - come come atw, we know you know that's not the case!
"They use temporary variable to do that" - ok, i'll bite, show me the atw way without a temp var...Comment
-
-
Just out of interest - how did you do it ?Originally posted by AtWJust look how they swap values in their sort:
byte item = items[i];
items[i] = items[j];
items[j] = item;
They use temporary variable to do that, no doubt this requires little thinking
You've come right out the other side of the forest of irony and ended up in the desert of wrong.
Comment
-
what do you know that isn't basic Knuth my little russian puppy.Originally posted by AtWQuickSort is not always the most efficient - it depends on distribution of data and its possible to find cases that increases its runtime badly.Comment
-
I could point you in the right direction but I'll let the ruskie show his ballcocks.Originally posted by bogeymanJust out of interest - how did you do it ?Comment
-
Check out #1 result in SKAOriginally posted by scotspine"They use temporary variable to do that" - ok, i'll bite, show me the atw way without a temp var...
Comment
-
Yep, let's see 'emOriginally posted by JabberwockyI could point you in the right direction but I'll let the ruskie show his ballcocks.
You've come right out the other side of the forest of irony and ended up in the desert of wrong.
Comment
-
So, which method did you use, and why are you sure it's faster than using an intermediate variable (when the compiler does a lot of optimising).Originally posted by AtWCheck out #1 result in SKA
Using the intermediate var is obvious and makes for easy-to-understand, maintainable code. Do you like to obfuscate your code to show how clever you are?
You've come right out the other side of the forest of irony and ended up in the desert of wrong.
Comment
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Dividends in 2026/27: an expert’s explainer for contractors Yesterday 07:20
- Contracting Awards 2026 opens for entries — with new AI category Mar 12 07:26
- Contractors, beware these four traps in the UK’s Statutory Residence Test Mar 11 00:23
- ‘Stable’ IT contractor demand moved near growth in February 2026 Mar 10 06:49
- What is a tax-efficient salary for 2026/27 as a limited company director? Mar 9 06:23
- Why the McCann Review is the latest failure of the Loan Charge scandal Mar 6 06:53
- What did Spring Statement 2026 say about mortgages? Mar 5 07:29
- Rachel Reeves overlooks contractors in ‘thin’ Spring Statement 2026 Mar 4 07:15
- Spring Statement 2026: chancellor’s full speech Mar 3 21:03
- Unlike today’s ‘boring’ Spring Statement 2026, Make Work Pay is transformative for contractors Mar 3 07:45

Comment