PeterAllenWebb

2,130
Reputation
375 views

Registered User

Name PeterAllenWebb
Member for 1 year
Seen 18 hours ago
Website
Location Ann Arbor, MI
Age 30
Software Developer now working in C# and C++, but familiar with a wide array of programming languages, paradigms, and techniques.
2d
revised anything better than bounding boxes?
added 13 characters in body
2d
comment anything better than bounding boxes?
@drhirsch True, but there are some special points of interest in the context of geolocation.
2d
revised anything better than bounding boxes?
added 113 characters in body; edited body
2d
comment anything better than bounding boxes?
I definitely agree he wants to do some space partitioning. He will have to modify the quadtree concept to get it to work, though, since it is intended for two-dimensional space in which the regions are rectangular. He will also need to worry about wrapping, as Nosredna rightly points out.
2d
answered anything better than bounding boxes?
2d
comment How can you detect if two regular expressions overlap in the strings they can match?
For purposes of resolving this question, it might be important to know EXACTLY what you mean by regular expression. Are you talking about the regexp syntax used by a particular programming language? Or rather "true" regular expressions using only concatenation, alternation, and Kleene star?
Dec
2
answered Finding elements that are present in one set not the other
Dec
1
answered What is a good 2D graphics framework, for a drawing application?
Dec
1
answered shortest path algorithm
Dec
1
answered jQuery not completely removing draggable/resizable
Dec
1
comment How much does the order of case labels affect the efficiency of switch statements?
@Andy E: But my real point is that people seem to assume that people asking questions on SO don't know basic things, e.g. its a mistake to spend a lot of time optimizing code that doesn't need to be fast. They then pounce on that instead of answering the harder question.
Dec
1
comment How much does the order of case labels affect the efficiency of switch statements?
@Andy E: I deleted my comment after re-reading the question. The first questions he asks is: "Can rearranging case labels can make code more efficient?" The answer is yes. The second is: "Is it micro-optimization?" In most cases yes, but not always. In my coding career I have in fact improved performance critical code by rearranging a switch.
Dec
1
revised How much does the order of case labels affect the efficiency of switch statements?
added 108 characters in body
Dec
1
comment How much does the order of case labels affect the efficiency of switch statements?
I don't think an assembly listing would make it clear what's going on. You would have to look at a simulation of a particular CPU step by step over many loops over the if statement.
Dec
1
answered How much does the order of case labels affect the efficiency of switch statements?
Dec
1
accepted partition a sequence of 2n real numbers so that…
Nov
30
revised partition a sequence of 2n real numbers so that…
added 49 characters in body; added 186 characters in body
Nov
30
revised partition a sequence of 2n real numbers so that…
added 10 characters in body; added 22 characters in body
Nov
30
revised partition a sequence of 2n real numbers so that…
added 19 characters in body
Nov
30
comment partition a sequence of 2n real numbers so that…
But doesn't this assume that either (x2n,x0),(x2n-1,x1) or (x2n,x0),(x2n-1,x1) must be pairings? And if so, why is that?
Nov
30
revised partition a sequence of 2n real numbers so that…
added 10 characters in body
Nov
30
revised partition a sequence of 2n real numbers so that…
added 2 characters in body
Nov
30
revised partition a sequence of 2n real numbers so that…
added 14 characters in body; added 103 characters in body
Nov
30
answered partition a sequence of 2n real numbers so that…
Nov
30
answered Embed a System.String in XAML
Nov
26
comment Optimal way for partitioning a cell based shape into a minimal amount of rectangles
Just wanted to warn you that I can't vouch for the optimality of my original answer. Check out my changes.
Nov
26
revised Optimal way for partitioning a cell based shape into a minimal amount of rectangles
added 554 characters in body
Nov
26
revised Optimal way for partitioning a cell based shape into a minimal amount of rectangles
deleted 872 characters in body
Nov
25
accepted Optimal way for partitioning a cell based shape into a minimal amount of rectangles
Nov
25
revised Optimal way for partitioning a cell based shape into a minimal amount of rectangles
added 328 characters in body
Nov
25
answered Optimal way for partitioning a cell based shape into a minimal amount of rectangles
Nov
25
revised How atomic is the Berkeley DB usage?
deleted 29 characters in body
Nov
25
revised How atomic is the Berkeley DB usage?
added 625 characters in body
Nov
25
answered How atomic is the Berkeley DB usage?
Nov
25
comment Is there a O(n) algorithm to build a max-heap?
I stand corrected.
Nov
24
comment Is there a O(n) algorithm to build a max-heap?
Your own link suggests that it is not possible. It should have said no there isn't...
Nov
24
comment Is there a O(n) algorithm to build a max-heap?
I think he must have meant O(n log n)?
Nov
24
answered Tic Tac Toe help
Nov
19
comment How to easily know if a maze has a road from start to goal?
@Matthieu: Yeah. Should have said "never overestimates".
Nov
16
comment WPF TextBox Height Equals Parent Height minus 50 pixels?
It definitely would be overkill. The margin should work.
Nov
13
comment How to easily know if a maze has a road from start to goal?
@Nick You can in fact, because the heuristic only needs to have the property that it never underestimates the distance from a point to the goal. You could therefore use the straight-line distance.
Nov
13
comment Is it correct to ask to solve an NP-complete problem on a job interview?
Everyone keeps talking about a dynamic-programming solution to this matrix problem, but nobody gives the solution. It doesn't seem like a DP problem to me.
Nov
7
comment How to reverse bits of a byte ?
@mask that's an unsigned long long, the suffix tells the compiler that what proceeds it is a 64-bit unsigned integer literal.
Nov
6
comment Deriving a state machine from a BNF grammar
Ah. I see your point now. But I think that you'll have trouble doing this with a state machine alone. You will probably have to parse the HTML, CSS, and JS separately. Fortunately there are already tools for that.
Nov
6
comment Deriving a state machine from a BNF grammar
I think if you're willing to cut corners just searching for $ followed by a valid variable name and then replacing would suffice in most cases. Also, crazy as it might seem, HTML is not a regular language, since its nesting level is potentially unlimited.
Nov
6
comment Compelling reasons to use WPF
Exact duplicate of stackoverflow.com/questions/202079/…
Nov
6
answered Deriving a state machine from a BNF grammar
Nov
5
comment What is spaghetti code?
That is so messed up...
Nov
5
answered Iterating over subsets of any size
Nov
3
comment Is it possible to find two numbers whose difference is minimum in O(n) time
We are discussing asymptotic analysis. The poster has not asked about 32 bit ints, or 64 bit ints. He could very well be using arbitrary precision integers. I know it seems pedantic, but if this distinction was not drawn, you could claim to sort any list of integers in O(n) time, which we know is not possible.