|
by Tansin A. Darcos (TDARCOS) 04/19/2012, 7:43pm PDT |
|
 |
|
 |
|
Entropy Stew wrote:
I was reading a game once, and it had the most beautiful means to do a task switch between the two players. It used an array to hold all the information for each of the players, one was number 1, and the other player was 2. The particular player whose turn it was, was stored in the variable P. So the entire switch between which player is up consists of the following:
P = 3 - P
If P, the current player number is 1, it's now 2. If it was 2, it's now 1. Extremely simple and very elegant solution.
This is exactly the sort of cute algorithm one should avoid when trying to keep things obvious and maintainable. I don't know how you could go on about keeping things simple then use this branch-avoiding microoptimization as an example. Even cuter (though functionally equivalent) would be P = P xor 3.
The Basic language - which was what the game I read was written in - back then did not support XOR on many platforms. P = 3 - P works in this case in any language. A similar trick will work for any combination of two values where they are different, using the total of the two minus the current value. For example, if you use 0 and 1, the value P = 1 - P will work for 0 and 1. P = 9 - P works for 4 and 5, 2 and 7, etc.
Entropy Stew wrote:
A tree structure is a good idea when working with slow machines and helps overcome the speed problems we had on (what are now older and less capable) systems in the past. It's way too complicated now in view of the raw speed of most current machines.
No, a tree is a good idea when you have data ideally represented by one. It is not remotely complicated - it's a basic fucking data structure. Fast processors have not obviated the need for algorithms faster than linear time, either.
No, they haven't. But there is a time and place for everything. If you're handling a list of items and need to keep them in alphabetical order, a simple comparison sort is fine for a table that won't exceed, say, 50 items. It's more appropriate to use Shell sort or something very efficient when you're handling thousands or tens of thousands of entries.
Entropy Stew wrote:
When you're programming a text-heavy 16-bit application on a PDP-11 minicomputer from the 1970s & 1980s or on an 8086 which lacks string processing instructions, string searches and comparisons are expensive in terms of processor time and tree structures are a good compromise. When writing a program for a IA32 or 64-bit processor that includes good string search routines as part of the instruction set, string comparisons are much cheaper and a tree structure is no longer as necessary unless you have huge data structures.
I'm writing a program that will collect identifiers in order to show where they are used in the source program it scans. For a typical program today, say a 20,000 line app that has perhaps 8-10 files, uses maybe 500 identifiers - an identifier being a variable, a function, a procedure, a record, etc. - and has perhaps 15,000 uses of these 500 identifiers might take two seconds to generate.
If I was targeting old machines or program systems of more than a million lines I might be more concerned. Besides, I do have at least one "stealth" feature I am using to improve performance, which I got the idea from a really good cross-reference program (but not good enough for today's Object Pascal programming language) someone else wrote back around 1980. The list of identifiers in my program is not one huge list, but an array of linked lists of the first character of the identifier. This breaks the identifier list into roughly 27 lists, each for the 26 letters and the underscore, the valid characters that an identifier can start with. If speed did become a problem, I could create an array of 27*38 lists, and capture the first two characters of an identifier (first char: a-z and _; second char: a-z, _, 0-9, and nul (nul is for 1 character identifiers, like I, C, or K).
Why in the name of Knuth are you kludging arrays of linked lists into a 27 bucket hash collision when you could be doing it properly? "n is tiny so I don't give a shit" is a completely acceptable answer right up until you start writing some halfassed algo to speed up your bodge; that shit is indefensible.
Where in the hell did you get the idea I'm using hashes, hash buckets, or can have hash collisions? I never said I was using hashing or hash tables and I'm not. I said I was using an array of linked lists. Let me show what I'm doing. This is from the code and I'll explain it:
Note that the huge blank space is caused by Caltrops; I have no control over it.
Const |
| IdentifierStart = ['_', 'A','B','C','D','E', 'F','G','H','I', 'J' 'K', 'L','M','N', 'O', 'P', 'Q', 'R','S', 'T', 'U',' V', 'W', 'X', 'Y', 'Z']; |
| {Allowed first character of identifier} |
Type | pIdentifiers= ^IdentifierRec; | | {Identifiers} |
| IdentifierRec= record | | {An Identifier: something the user created for a data value} |
| | DisplayName, | {Name as eventually displayed, may be CamelCase, FORCEDUPPERCASE or forcedlowercase} |
| | Name: string; | {What item - always UPPERCASE} |
| | FileName: String; | {File where identifier was declared} |
| | IdType: IdentifierType; | {Type of identifier: var, const, proc etc.} |
| | count: longint; | {How many times it's used} |
| | LDefined, | {Usually the first reference in system} |
| | GDefined: longint; | {And in this file} |
| | Next: pIdentifiers; | {Next Identifier in chain} |
| | First, | {First line number when searching items} |
| | Last: pLineNumbers; | {Last line number in chain} |
| end; |
| |
| |
var | IdentifierTableAlpha: array [identifierstart] of pidentifiers; | | { List of Identifers in Alphabetical order} |
var | thisitem: pidentifers; |
Now, presume the first character of the identifier is in the variable CH, (say it's a variable "XRAY", then CH is equal to "X") and the particular identifier in the variable IDENTIFIER. So I would follow through all identifiers beginning with that character by a scan such as
thisitem := iIdentifierTableAlpha[CH];
I'm now at the top of the table for all identifiers beginning with X. If thisitem is NIL then there aren't any, I just put it in. If it's not, I just check.
if thisitem^.name = identifier then
Here I would simply increase the usage count, it's the same identifier.
Otherwise I check for the identifier, and when the current item in the list is alphabetically higher than the current identifier or it's the last item, then I create a new identifier record, insert it in the list before the current entry, change the previous entry's next item to point to the new one, and make its next item the old one. When someone scans this list, the items are in alphabetical order.
There is no hashing and hash collisions are impossible.
|
|
 |
|
 |
|
|
|
Jesus Fucking Christ. People. by Oom Shnibble 04/17/2012, 11:10pm PDT 
Context? by Entropy Stew 04/18/2012, 12:57am PDT 
Re: Context? by Oom Shnibble 04/18/2012, 1:43am PDT 
I have some news for you, Om by Tansin A. Darcos (TDARCOS) 04/18/2012, 1:07am PDT 
Um by Fullofkitttens 04/18/2012, 5:14am PDT 
This is correct. You're a much better programmer than TDARCOS by Entropy Stew 04/18/2012, 8:26am PDT 
Oh, and storage space is also increased by Entropy Stew 04/18/2012, 8:36am PDT 
Using a tree structure is an overcomplicated method, at least now by Tansin A. Darcos (TDARCOS) 04/19/2012, 10:22am PDT 
You're a disaster by Entropy Stew 04/19/2012, 1:06pm PDT 
I forgot to mention your insane touting of this as a better approach vs trees NT by Entropy Stew 04/19/2012, 1:35pm PDT 
Actually, I know what I'm doing. Do you what you are doing? by Tansin A. Darcos (TDARCOS) 04/19/2012, 7:43pm PDT 
Your data structure is analogous to a hash table with 27 buckets by Entropy Stew 04/20/2012, 1:02am PDT 
Re: Your data structure is analogous to a hash table with 27 buckets by Tansin A. Darcos (TDARCOS) 04/20/2012, 5:43pm PDT 
Get dunked, son by Entropy Stew 04/20/2012, 9:26pm PDT 
Re: Get dunked, son by Tansin A. Darcos (TDARCOS) 04/21/2012, 2:28am PDT 
Oh Jesus I get it now. by The Happiness Engine 04/21/2012, 9:02am PDT 
Oh, it's just a really shitty skip list, then NT by Entropy Stew 04/21/2012, 9:26am PDT 
There's more than one way to implement a hash table by Entropy Stew 04/21/2012, 10:40am PDT 
His data structure is analogous to 27 buckets of shit. NT by Orange Devil Bat 05/12/2012, 9:13am PDT 
hey tansin by jeep 04/21/2012, 6:10pm PDT 
Re: hey tansin by Entropy Stew 04/22/2012, 6:07am PDT 
Re: hey tansin by jeep 04/22/2012, 8:10am PDT 
you would not believe the fucking scrub phds I've been handed to work with by jeep 04/22/2012, 8:19am PDT 
PhD is the rubber stamp indicating either greatness or utter uselessness by Entropy Stew 04/22/2012, 10:18am PDT 
I've learned to avoid the master's ones altogether by jeep 04/22/2012, 6:36pm PDT 
Re: hey tansin by Tansin A. Darcos (TDARCOS) 04/24/2012, 1:53am PDT 
Re: hey tansin by jeep 04/24/2012, 5:57am PDT 
What is Pascal and why it is used by Tansin A. Darcos (TDARCOS) 04/19/2012, 9:31am PDT 
Pascal is a terrible tinkertoy dead programming language. NT by Too boring, didn't read 04/19/2012, 4:26pm PDT 
Pascal/Delphi by Oom Shnibble 04/19/2012, 11:34pm PDT 
Also (Mini-rant) by Oom Shnibble 04/19/2012, 11:44pm PDT 
Re: Also (Mini-rant) by Dangerous Dave 04/20/2012, 7:20am PDT 
The schools around here (Big Ten) start with Python then go to C++. by Fullofkitttens 04/20/2012, 7:39am PDT 
Re: Also (Mini-rant) by Tansin A. Darcos (TDARCOS) 04/20/2012, 6:22pm PDT 
Re: Also (Mini-rant) by Dangerous Dave 04/20/2012, 9:37pm PDT 
Re: Also (Mini-rant) by Entropy Stew 04/20/2012, 10:40pm PDT 
Re: Also (Mini-rant) by Tansin A. Darcos (TDARCOS) 04/20/2012, 5:54pm PDT 
Re: Also (Mini-rant) by Entropy Stew 04/20/2012, 9:44pm PDT 
Re: Also (Mini-rant) by Tansin A. Darcos (TDARCOS) 04/21/2012, 4:24pm PDT 
Corection, I mean "one block of 511K free" in above article NT by Tansin A. Darcos (TDARCOS) 04/21/2012, 4:24pm PDT 
That's just a smart allocator. Even C has them by Entropy Stew 04/22/2012, 5:32am PDT 
It's still automatic garbage collection by Tansin A. Darcos (TDARCOS) 04/24/2012, 2:00am PDT 
No it isn't, you ignorant motherfucker. How can you be wrong so often? by Entropy Stew 04/24/2012, 3:46am PDT 
So you really think insulting someone is going to get them to listen to you? NT by Tansin A. Darcos (TDARCOS) 04/27/2012, 5:37pm PDT 
Pretty sure he's serious about the ignorant part, maybe even the mother fucker! NT by Worm 04/27/2012, 6:04pm PDT 
I never fucked my mother. She charged too much. NT by Tansin A. Darcos (TDARCOS) 05/10/2012, 6:07pm PDT 
OH GOD HIS FEELINGS NT by Entropy Stew 04/27/2012, 6:36pm PDT 
SPOILERS: He so fucked up the cheeseburger. It's amazing, you should check it ou NT by The Happiness Engine 04/27/2012, 8:53pm PDT 
Re: Pascal/Delphi by Tansin A. Darcos (TDARCOS) 04/20/2012, 5:34pm PDT 
What the fuck does this have to do with pointers? NT by Entropy Stew 04/18/2012, 8:44am PDT 
Re: What the fuck does this have to do with pointers? by Ice Cream Jonsey 04/18/2012, 9:07am PDT 
Exactly right, Jonsey, you nailed it! by Tansin A. Darcos (TDARCOS) 04/19/2012, 10:32am PDT 
I got yer back, Commander. NT by Ice Cream Jonsey 04/19/2012, 11:55am PDT 
Counterpoint by Ray of Light 05/06/2012, 1:49pm PDT 
HAHAHAHAH by Entropy Stew 05/06/2012, 5:35pm PDT 
Re: HAHAHAHAH by jeep 05/10/2012, 6:41pm PDT 
also I hope you mean I don't sound like I went to school for cs by jeep 05/10/2012, 6:42pm PDT 
Neither did I NT by Entropy Stew 05/10/2012, 8:16pm PDT 
Your degree is in scare quotes! NT by We Miss QB 05/10/2012, 8:33pm PDT 
I did! NT by Scot Thompson, ex-Yahoo CEO 05/14/2012, 2:38am PDT 
Oh please, this has nothing to do with application development by Tansin A. Darcos (TDARCOS) 05/10/2012, 6:44pm PDT 
Well I definitely feel safe now *hands over millions of credit card numbers* by Entropy Stew 05/10/2012, 9:36pm PDT 
Re: Well I definitely feel safe now *hands over millions of credit card numbers* by Tansin A. Darcos (TDARCOS) 05/12/2012, 8:43am PDT 
You know less about security than you do data structures NT by Entropy Stew 05/12/2012, 4:11pm PDT 
Hi, my name is Ray by Ray of Light 05/14/2012, 1:49am PDT 
Re: Hi, my name is Ray by jeep 05/14/2012, 1:28pm PDT 
TDARCOS: wrong enough to summon Ray back from 2fort by Entropy Stew 05/14/2012, 6:19pm PDT 
Accessing one item at a time by Tansin A. Darcos (TDARCOS) 05/16/2012, 3:28am PDT 
Context: it matters NT by Entropy Stew 05/16/2012, 4:04pm PDT 
Part Two of this. by Oom Shnibble 05/25/2012, 9:19am PDT 
Re: Part Two of this. by Tansin A. Darcos (TDARCOS) 05/27/2012, 9:51am PDT 
What? Isn't the issue that you can't cast to an unrelated class? NT by Entropy Stew 05/27/2012, 1:34pm PDT 
yes by Rafiki 05/27/2012, 1:58pm PDT 
I don't get how TDARCOS understood it was casting, then failed to understand the NT by Entropy Stew 05/27/2012, 2:05pm PDT 
I think I did get most of it by Tansin A. Darcos (TDARCOS) 05/28/2012, 10:57pm PDT 
He is close enough for government work -nt- NT by Oom Shnibble 05/29/2012, 11:56am PDT 
The Future of Perl NT by Kerr 02/21/2025, 2:37pm PST 
|
|