User HenryR - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T19:18:25Z http://stackoverflow.com/feeds/user/2827 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn 30 What's the next thing on your list to learn? HenryR 2008-10-23T23:29:01Z 2009-12-03T21:24:04Z <p>Subject line says it all. What's next on your list of things to tackle and get to grips with? Got a language you want to learn? Want to grok dynamic programming? Think it's about time you understood type theory?</p> <p>What's next? And why?</p> http://stackoverflow.com/questions/543755/are-you-concerned-about-multicore 11 Are you concerned about multicore? HenryR 2009-02-12T22:26:52Z 2009-06-15T05:46:12Z <p>This is undeniable: multicore computers are here to stay. </p> <p>So is this: efficient multicore programming is pretty difficult. It's not just a case of understanding pthreads. </p> <p>This is arguable: the 'developer on the street' need concern him/herself with these developments.</p> <p>To what extent are you concerned about having to expand your skillset for multicore? Is the software you are writing a candidate for parallelisation, and if so are you doing anything to educate yourself (if you didn't already know the techniques)? Or do you believe that the operating system will take care of most of it, the language runtime will do its bit and your application will happily sit on one core and let the others do their thing?</p> http://stackoverflow.com/questions/620877/what-algorithms-there-are-for-failover-in-a-distributed-system/624591#624591 4 Answer by HenryR for What algorithms there are for failover in a distributed system? HenryR 2009-03-08T23:57:36Z 2009-03-08T23:57:36Z <pre><code>* What algorithms there are for doing failover in a distributed system? </code></pre> <p>Possibly not algorithms, so much as systems. You need to design your architecture around the questions you've asked. </p> <pre><code>* What algorithms there are for consensus in a distributed system? </code></pre> <p>You probably want to implement Paxos. Simple Paxos is not too hard to get right. If you're are trying to make it bullet proof, read Google's 'Paxos Made Live' paper. If you're hoping to make it high-performance, look at Multi-Paxos. </p> <pre><code>* How should the nodes in the cluster determine that a node is down? </code></pre> <p>Depends. Heartbeats are actually a pretty good way to do this. The problem is that you have false positives, but that's kind of unavoidable, and in a cluster on the same LAN with manageable load they're accurate. The good thing about Paxos is that false positives are dealt with automatically. However, if you actually need failure information for some other purpose then you need to make sure it's ok that you detect a node as failed, but it actually is just under load and taking time to respond to a heartbeat. </p> <pre><code>* How should the nodes determine that what database entries had their master copy on the failed node at the time of failure, so that other nodes may recover those entries? * How to decide that which node(s) has the latest secondary copy of some entry? * How to decide that which node's secondary copy should be promoted to be the new master copy? </code></pre> <p>I think you might really benefit from reading the Google FileSystem paper. In GFS there's a dedicated master node which keeps track of which nodes have which blocks. This scheme might work for you, but the key is to keep accesses to this master minimal. </p> <p>If you don't store this information on a dedicated node, you're going to have to store it everywhere. Try tagging the data with the master holder's id.</p> <pre><code>* How to handle it, if the node which was though to be down, suddenly comes back as if nothing happened? </code></pre> <p>See above, but the basic point is that you have to be careful because a node that is no longer the master might think that it is. One thing that I don't think you've solved: how does an update get to the master - i.e. how does a client know which node to send the update to? </p> <pre><code>* How to avoid split-brain scenarios, where the network is temporarily split into two, and both sides think that the other side has died? </code></pre> <p>Paxos works here by preventing progress in the case of a perfect split. Otherwise, as before, you have to be very careful. </p> <p>In general, solve the question of knowing which node gets which data item as the master, and you'll be a long way towards fixing your architecture. Note that you can't just have the node receiving the update be the master - what if two updates happen concurrently? Don't rely on a synchronised global clock either - that way madness lies. You probably want to avoid running consensus on every write if you can help it, so instead perhaps have a slow master-failover protocol and a fast write path.</p> <p>Feel free to shoot me a mail off line if you want to know more details. My blog (<a href="http://hnr.dnsalias.net/wordpress" rel="nofollow">http://hnr.dnsalias.net/wordpress</a>) deals with a lot of this stuff.</p> <p>cheers,</p> <p>Henry</p> http://stackoverflow.com/questions/543877/if-you-could-take-one-computer-science-course-now-what-would-it-be 12 If you could take one computer science course now, what would it be? HenryR 2009-02-12T22:54:28Z 2009-03-06T23:59:32Z <p>If you had the opportunity to take one computer science course now, and as a result significantly increase your knowledge in a subject area, what would it be? Undergraduate or graduate level.</p> <p>Compilers? Distributed algorithms? Concurrency theory? Advanced operating systems?</p> <p>Let me know why.</p> <p>(Note that I appreciate this isn't a far fetched scenario - but time and inertia might be preventing people from taking the course or reading the book or whatever)</p> http://stackoverflow.com/questions/558657/whats-the-difference-between-an-algorithm-and-a-design-pattern/558695#558695 7 Answer by HenryR for What's the difference between an Algorithm and a Design Pattern HenryR 2009-02-17T20:58:19Z 2009-02-17T20:58:19Z <p>Yes, there is a difference.</p> <p>An <strong>algorithm</strong> is a recipe for performing some task - an unambiguous finite set of instructions that achieves some goal by operating on an input and producing an output. Typically an algorithm is expressed in a language-agnostic pseudo-code, which can then be implemented in the language of your choice.</p> <p>A <strong>design pattern</strong> is a way of structuring your code in order to elegantly express a relationship between functional components. You might use design patterns within the implementation of an algorithm. For example, you might use an algorithm for an in-order walk of a tree to ensure that you visit all the nodes of a tree data structure in a certain order. You might also implement a <em>visitor</em> design pattern to express how your implementation returns control to the calling context to indicate that a node has been visited. This is not part of the algorithm, but part of the software design, and how you structure the interfaces that each component of your software can use.</p> <p>Algorithms and design patterns are orthogonal, although they may well both be used at the same time.</p> http://stackoverflow.com/questions/488095/can-anyone-suggest-any-good-conferences-on-parallel-and-distributed-computing/525760#525760 1 Answer by HenryR for Can anyone suggest any good Conferences on Parallel and Distributed Computing? HenryR 2009-02-08T14:02:16Z 2009-02-08T14:02:16Z <p>Distributed Systems and Networks (DSN), Principles of Distributed Computing (PODC) and Networked Systems: Design and Implementation (NSDI) spring to mind. </p> http://stackoverflow.com/questions/524198/how-to-design-and-verify-distributed-systems/525759#525759 1 Answer by HenryR for How to design and verify distributed systems? HenryR 2009-02-08T14:00:51Z 2009-02-08T14:00:51Z <p>One good book is Birman's <a href="http://rads.stackoverflow.com/amzn/click/0387215093" rel="nofollow">Reliable Distributed Systems</a>, although it has its detractors.</p> <p>If you want to formally verify your protocol you could look at some of the techniques in Lynch's <a href="http://rads.stackoverflow.com/amzn/click/1558603484" rel="nofollow">Distributed Algorithms</a>. </p> <p>It is likely that whatever protocol you are trying to implement has been designed and analysed before. I'll just plug my own <a href="http://hnr.dnsalias.net/wordpress" rel="nofollow">blog</a>, which covers e.g. consensus algorithms.</p> http://stackoverflow.com/questions/524287/developer-essentials-resources-and-projects-to-attempt/525714#525714 2 Answer by HenryR for Developer essentials - resources and projects to attempt HenryR 2009-02-08T13:33:27Z 2009-02-08T13:33:27Z <p>Ok, to attack the list you've given (BTW, they don't sound scattershot at all - you sound like you're interested in computer systems, which is a mature and lively area of research).</p> <p>I'll give you a resource and an example project for each area:</p> <p>Data structures and algorithms. </p> <ul> <li><strong>Resource:</strong> the canonical book, and one that I still think is the best, is Introduction to Algorithms by Cormen et al. It is not very easy going, but it is very rich and well explained. Back up what you can't quite grasp from there with wikipedia (whose DS+A pages are not in general bad) and perhaps the NIST dictionary.</li> <li><strong>Project:</strong> implement as many as you like of your favourite algorithms in the language of your choice. If you are using ITA as above, I'd recommend Python only because it's the closest language to the pseudo-code they use, but do not worry too much about your choice of langauge. I'll repeat that don't get bogged down in choosing a language; there's plenty of time to learn them all :)</li> </ul> <p>Networking.</p> <ul> <li><p><strong>Resource:</strong> To learn how it all fits together, there are several good books. I like Tanenbaum's 'Computer Networks', but another good choice (although caveat emptor, I haven't read it thoroughly myself) which might suit you better is Kurose and Ross' <a href="http://rads.stackoverflow.com/amzn/click/0321227352" rel="nofollow">Computer Networks: A Top Down Approach Using The Internet</a>. This book might work well as you are more likely to hit concepts you find familiar early on. </p> <p>To put it all into practice, read the Linux or FreeBSD kernel source to see how the networking stack there is put together. There are good resources, either in print or on the net, to help you with this process. BTW, I really wouldn't worry too much about HTTP. It's an important protocol, but not really a very interesting one. TCP, IP, UDP, BGP and friends are much more interesting in my view!</p></li> <li><strong>Project:</strong> Difficult to know what is a workable project. Answer the questions at the end of book chapters. Teach yourself user-space socket programming by writing a simple client-server program ("Hello world!" over the net isn't too hard to do!). Once you have this, you can probably come up with an extension yourself - perhaps you want to write a really simple web server.</li> </ul> <p>Multi-threaded programming:</p> <ul> <li><strong>Resource:</strong> This is a huge topic. If you just want to understand how multi-threaded primitives operate in your language of choice, find a tutorial on the net - there are loads for Python, Java and C at least. If you get interested in the theory, search for Herb Sutter's series in DDJ on concurrent programming (but this may a bit advanced for you right now). Herlihy and Shavit's <a href="http://rads.stackoverflow.com/amzn/click/0123705916" rel="nofollow">Art of Multiprocessor Programming</a> is a fantastic book on concurrent programming from a very (very!) academic perspective on the practical, although the first edition needs a bunch of mistakes fixed.</li> <li><strong>Project:</strong> Take your server from the networking project and serve each client in a new thread, so that you can accept many connections at once. Code up a solution to the dining philosopher's problem :)</li> </ul> <p>Operating systems:</p> <ul> <li><p><strong>Resource:</strong> Several good introductory books exist. Again, I'm a fan of Tanenbaum's <a href="http://rads.stackoverflow.com/amzn/click/0138134596" rel="nofollow">Modern Operating Systems</a>, but the Silberschatz et. al. book is good as well. You really want a book here, IMHO, as you want a generalist overview of what design choices are available before studying how a particular operating system works.</p> <p>When you do get to that point, however, I'd suggest reading the Linux source code again. There are good articles on the net, and some good books in print (I like <a href="http://rads.stackoverflow.com/amzn/click/0672327201" rel="nofollow">Linux Kernel Development</a>, but it is becoming necessarily a bit dated).</p></li> <li><p><strong>Project:</strong> Install a Linux distribution in a virtual machine. Add a system call to the kernel, and test it from user space. Then the kernel is your oyster! Try hacking on the scheduler - start off by making it really dumb, then slowly add features back in. </p> <p>If you like, you can try writing an OS from scratch, but that is a large and potentially hugely frustrating experience. I'd suggest starting to work with an extant kernel - at least then when it breaks you know it was because of something you just did :)</p></li> </ul> http://stackoverflow.com/questions/515214/total-number-of-nodes-in-a-tree-data-structure/515297#515297 1 Answer by HenryR for Total number of nodes in a tree data structure? HenryR 2009-02-05T10:20:27Z 2009-02-05T10:20:27Z <p>If your tree is approximately <em>full</em>, that is every level has its full complement of children except for the last two, then you have between N^(L-2) and N^(L-1) leaf nodes and between N^(L-1) and N^L nodes total.</p> <p>If your tree is not full, then knowing the number of leaf nodes doesn't help as a totally unbalanced tree will have one leaf node but arbitrarily many parents. </p> <p>I wonder how precise your statement 'each node has about N nodes' is - if you know the average branching factor, perhaps you can compute the expected size of the tree.</p> <p>If you are able to find the ratio of leaves to internal nodes, and you know the average number of children, you can approximate this as (n*ratio)^N = n. This won't give you your answer, but I wonder if someone with better maths than me can figure out a way to interpose L into this equation and give you something soluble.</p> <p>Still, if you want to know precisely, you must iterate over the structure of the tree and count nodes as you go.</p> http://stackoverflow.com/questions/501095/what-is-the-hardest-mathematics-in-cs/501973#501973 1 Answer by HenryR for What is the hardest Mathematics in CS? HenryR 2009-02-02T01:22:54Z 2009-02-02T01:22:54Z <p>Maurice Herlihy's work on distributed protocols as functions on simplexes (i.e. an algebraic topology setting) is hard for me:</p> <p><a href="http://www.cs.brown.edu/~mph/topology.html" rel="nofollow">http://www.cs.brown.edu/~mph/topology.html</a></p> http://stackoverflow.com/questions/461715/what-was-your-final-year-cs-project/494098#494098 0 Answer by HenryR for What was your final year CS project? HenryR 2009-01-30T00:48:29Z 2009-01-30T00:48:29Z <p>Streaming geometry for remote visualisation of very large datasets. </p> <p>Picking geometry that was perceptually relevant to the user (with a bit of machine learning on simulated user runs through the data set), guessing where they were going to go next and sending the right geometry as a prefetch, doing hidden surface removal on the server at run-time and via pre-processing. </p> <p>Plus some novel (but flawed) compression algorithms based on genetic algorithms. It was a real grab-bag of techniques. </p> http://stackoverflow.com/questions/442744/bnf-to-regular-expressions/442953#442953 0 Answer by HenryR for BNF to regular Expressions HenryR 2009-01-14T13:34:14Z 2009-01-14T13:34:14Z <p>You can't - regular expressions can only recognise a small subset of possible languages. In particular, informally, any language that requires an unbounded amount of memory potentially to recognise is not RE recognisable. </p> <p>Here, you'd need an unbounded amount of memory to remember how many opening parentheses you've seen in order to make sure the number of closing parentheses are the same. </p> <p>You'll need some mechanism that is capable of parsing Context-Free Grammars to be able to recognise languages described by BNF in general. Modern parsers are very good at this!</p> http://stackoverflow.com/questions/370975/how-many-programmers-recommending-introduction-to-algorithms-by-clrs-actually-r/371035#371035 0 Answer by HenryR for How many programmers recommending "Introduction to algorithms" by CLRS actually read whole book? HenryR 2008-12-16T11:22:28Z 2008-12-16T11:22:28Z <p>I've read the majority of it, although not in a sit-down cover-to-cover session. I've done some exercises and implemented a number of the data structures. I teach from it - or at least use it as first go-to reference - so have a responsibility to be pretty familiar with it.</p> <p>That said, I'm still on the first edition, which I got for a song :)</p> http://stackoverflow.com/questions/366422/what-is-the-pythonic-way-to-avoid-default-parameters-that-are-empty-lists/366430#366430 23 Answer by HenryR for What is the pythonic way to avoid default parameters that are empty lists? HenryR 2008-12-14T11:27:30Z 2008-12-14T12:48:08Z <pre><code>def myFunc(working_list=None): if working_list is None: working_list = [] working_list.append("a") print working_list </code></pre> <p>is how I do it.</p> http://stackoverflow.com/questions/366418/how-to-get-started-on-algorithms/366444#366444 2 Answer by HenryR for How to get started on ALGORITHMS? HenryR 2008-12-14T11:42:07Z 2008-12-14T11:42:07Z <p>If you really want to start from scratch, I'd suggest one or both of:</p> <p><a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-046JFall-2005/CourseHome/" rel="nofollow">MIT's OCW algorithms course</a>, which has video lectures.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0262531968" rel="nofollow">Introduction to Algorithms</a>, which, if read carefully from the start for the first 15 chapters or so, gives a really excellent introduction to algorithms. The book is language agnostic - the algorithms are written in pseudo-code. However, I think this is a benefit; you can't just copy or paste solutions, you have to think about translating them (which is typically trivial) into Python or Java which will help your understanding. Eventually, you'll build up a library of go-to code.</p> <p>There's an awful lot to learn about algorithms and data structures. You need to be reasonably confident with some discrete mathematics to be able to understand all the theory, but you might find it's easiest to lazily evaluate your need - when you come across something you don't understand, look it up and spend some time getting it. </p> http://stackoverflow.com/questions/193344/starting-compsci-uni-next-week-whats-the-best-advice-you-can-muster/193356#193356 0 Answer by HenryR for Starting CompSci Uni next week, what's the best advice you can muster? HenryR 2008-10-10T23:37:20Z 2008-10-10T23:37:20Z <p>Work hard, be conscientious. Play hard, try new things and new people. </p> <p>The rest will take care of itself. </p> http://stackoverflow.com/questions/135637/what-are-some-interesting-small-linux-kernel-projects-to-help-learn-the-source 4 What are some interesting, small Linux kernel projects to help learn the source? HenryR 2008-09-25T19:59:23Z 2008-10-10T08:01:37Z <p>What small projects would you suggest to a novice with the kernel, but someone who has plenty of systems and C experience? The aim is to develop a familiarity with the kernel source code, and a facility for experimentation with crazy ideas.</p> <p>I'm trying to think of some manageable small tasks (for example, add a syscall), but what would you suggest? For a target audience think someone who has at least an undergraduate OS course under their belt. </p> http://stackoverflow.com/questions/171876/how-do-two-phase-commits-prevent-last-second-failure/171912#171912 3 Answer by HenryR for How do two-phase commits prevent last-second failure? HenryR 2008-10-05T12:43:34Z 2008-10-05T12:43:34Z <p>There are many ways to attack the problems with two-phase commit. Almost all of them wind up as some variant of the Paxos three-phase commit algorithm. Mike Burrows, who designed the Chubby lock service at Google which is based on Paxos, said that there are two types of distributed commit algorithms - "Paxos, and incorrect ones" - in a lecture I saw.</p> <p>One thing the crashed node could do, when it reawakes, is say "I never heard about this transaction, should it have been committed?" to the coordinator, which will tell it what the vote was.</p> <p>Bear in mind that this is an example of a more general problem: the crashed node could miss many transactions before it recovers. Therefore it's terribly important that upon recovery it should talk either to the coordinator or another replica before making itself available. If the node itself can't tell whether or not it has crashed, then things get more involved but still tractable. </p> <p>If you use a quorum system for database reads, the inconsistency will be masked (and made known to the database itself). </p> http://stackoverflow.com/questions/151147/mathematics-for-computer-science-students/151230#151230 3 Answer by HenryR for Mathematics for Computer Science Students HenryR 2008-09-29T23:51:23Z 2008-09-29T23:51:23Z <p>What's missing in your list is I think one of the most fundamental topics: probability (although statistics will have some overlap).</p> <p>If you want to follow CLRS, you need to understand how probability works. For example the proof of Quicksort's average case behaviour requires an expectation argument that isn't too hard, but might throw you if you don't understand it.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0521835402" rel="nofollow">This</a> book by Mitzenmacher and Upfal is my favourite probability introduction. It's not easy, but it's very readable and gives a proper feel for applications as well as theory. </p> <p>You can leave differential equations for a while as they're not tremendously vital for the areas you're looking at.</p> <p>Discrete mathematics is the all important, catch-all topic. Know some basic combinatorics: formulae for n choose k, permutations etc. Make sure you understand what a relation is. Basic set theory is important, and you should know what someone means when they say "Consider a graph G=(V,E)". Any introductory text will get you to those levels, but if you really want to say you've nailed it the hard (and perhaps most rewarding) way, get cracking on <a href="http://rads.stackoverflow.com/amzn/click/0201558025" rel="nofollow">Concrete Mathematics</a>. </p> <p>You should also know a little number theory, just enough to be dangerous. This is again important for some stuff in CLRS. If you know a little something about prime numbers, and modulo arithmetic you're probably good to go, but keep a reference nearby when you meet a proof step you're not expecting. </p> http://stackoverflow.com/questions/146494/have-you-found-competitive-programming-to-be-useful/146620#146620 3 Answer by HenryR for Have you found competitive programming to be useful? HenryR 2008-09-28T20:07:59Z 2008-09-28T20:07:59Z <p>I find that they're an excellent way to teach yourself what you don't know. There are two facets to this: the stuff that you genuinely don't know, and the stuff that you think you do but fail to deliver on when needed.</p> <p>In the first case, I was doing pretty well in the Google CodeJam competition until I had to drop out as the round coincided with a wedding, and it's frowned upon to be compiling during the "I do"s :) But I went back and looked at the problem set later for the round I missed, and realised I wouldn't have done very well because I really didn't know how to attack one of the problems. After some reading around, and looking at some discussion threads, it turns out I would have needed to perhaps use linear programming to solve an optimisation question. Although I knew of its existence, I certainly didn't know enough about LP to make use of it. Now I do. That's the benefit of these programs.</p> <p>The instances of the second case are too many and too painful to enumerate. Think you understand dynamic programming? Here's where you get to find out definitively. It can be a problem if you're not humble enough to admit to your shortcomings, but if you are you stand to learn an awful lot. </p> <p>These comments apply equally to doing the problems competitively or after the fact.</p> http://stackoverflow.com/questions/132359/how-is-google-so-fast/132448#132448 26 Answer by HenryR for How is Google so fast? HenryR 2008-09-25T10:09:41Z 2008-09-28T14:54:51Z <p>Latency is killed by disk accesses. Hence it's reasonable to believe that all data used to answer queries is kept in memory. This implies thousands of servers, each replicating one of many shards. Therefore the critical path for search is unlikely to hit any of their flagship distributed systems technologies GFS, MapReduce or BigTable. These will be used to process crawler results, crudely. </p> <p>The handy thing about search is that there's no need to have either strongly consistent results or completely up-to-date data, so Google are not prevented from responding to a query because a more up-to-date search result has become available. </p> <p>So a possible architecture is quite simple: front end servers process the query, normalising it (possibly by stripping out stop words etc.) then distributing it to whatever subset of replicas owns that part of the query space (an alternative architecture is to split the data up by web pages, so that one of every replica set needs to be contacted for every query). Many, many replicas are probably queried, and the quickest responses win. Each replica has an index mapping queries (or individual query terms) to documents which they can use to look up results in memory very quickly. If different results come back from different sources, the front-end server can rank them as it spits out the html.</p> <p>Note that this is probably a long way different from what Google actually do - they will have engineered the life out of this system so there may be more caches in strange areas, weird indexes and some kind of funky load-balancing scheme amongst other possible differences. </p> http://stackoverflow.com/questions/145842/what-are-the-most-useful-data-structures-to-know-inside-out/146011#146011 0 Answer by HenryR for What are the most useful data structures to know inside out? HenryR 2008-09-28T14:51:33Z 2008-09-28T14:51:33Z <p>For a basic appreciation, you should know of a few abstract data types (set, dictionary, ordered list, queue, stack etc.) and several ways of implementing each with their relative trade-offs.</p> <p>This will probably require you to understand arrays, linked-lists (single and double linked), hash tables, binary search trees (with some understanding of simple balancing heuristics) and binary heaps. Know these inside out and you'll be a long way towards understanding more complex and interesting data structures. Plus if you've implemented all of them you'll have a ready-made library that you understand for programming projects (although obviously more battle-hardened libraries like Boost or whatever are more appropriate for production code).</p> <p>This gives a very useful vocabulary of data structures, which might make a significant difference to the way you write your programs. You might find you've been solving problems with many partial implementations of a queue, for example, that you can now replace with a canonical implementation.</p> http://stackoverflow.com/questions/144360/simple-enough-explanation-of-a-distributed-hash-table-dht/144460#144460 4 Answer by HenryR for Simple enough explanation of a Distributed Hash Table (DHT) HenryR 2008-09-27T20:59:46Z 2008-09-27T20:59:46Z <p>Ok, they're fundamentally a pretty simple idea. A DHT gives you a dictionary-like interface, but the nodes are distributed across the network. The trick with DHTs is that the node that gets to store a particular key is found by hashing that key, so in effect your hash-table buckets are now independent nodes in a network.</p> <p>This gives a lot of fault-tolerance and reliability, and possibly some performance benefit, but it also throws up a lot of headaches. For example, what happens when a node leaves the network, by failing or otherwise? And how do you redistribute keys when a node joins so that the load is roughly balanced. Come to think of it, how do you evenly distribute keys anyhow? And when a node joins, how do you avoid rehashing everything? (Remember you'd have to do this in a normal hash table if you increase the number of buckets).</p> <p>One example DHT that tackles some of these problems is a logical ring of n nodes, each taking responsibility for 1/n of the keyspace. Once you add a node to the network, it finds a place on the ring to sit between two other nodes, and takes responsibility for some of the keys in its sibling nodes. The beauty of this approach is that none of the other nodes in the ring are affected; only the two sibling nodes have to redistribute keys.</p> <p>For example, say in a three node ring the first node has keys 0-10, the second 11-20 and the third 21-30. If a fourth node comes along and inserts itself between nodes 3 and 0 (remember, they're in a ring), it can take responsibility for say half of 3's keyspace, so now it deals with 26-30 and node 3 deals with 21-25. </p> <p>There are many other overlay structures such as this that use content-based routing to find the right node on which to store a key. Locating a key in a ring requires searching round the ring one node at a time (unless you keep a local look-up table, problematic in a DHT of thousands of nodes), which is O(n)-hop routing. Other structures - including augmented rings - guarantee O(log n)-hop routing, and some claim to O(1)-hop routing at the cost of more maintenance. </p> <p>Read the wikipedia page, and if you really want to know in a bit of depth, check out this <a href="http://www.eecs.harvard.edu/~mema/courses/cs264/cs264.html" rel="nofollow">coursepage</a> at Harvard which has a pretty comprehensive reading list.</p> http://stackoverflow.com/questions/143140/bron-kerbosch-algorithm-for-clique-finding/143277#143277 1 Answer by HenryR for Bron-Kerbosch algorithm for clique finding HenryR 2008-09-27T09:03:07Z 2008-09-27T09:03:07Z <p>Try finding someone with an ACM student account who can give you a copy of the paper, which is here: <a href="http://portal.acm.org/citation.cfm?doid=362342.362367" rel="nofollow">http://portal.acm.org/citation.cfm?doid=362342.362367</a></p> <p>I just downloaded it, and it's only two pages long, with an implementation in Algol 60!</p> http://stackoverflow.com/questions/133008/what-is-big-o-notation-do-you-use-it/140578#140578 1 Answer by HenryR for What is Big O notation? Do you use it? HenryR 2008-09-26T16:35:03Z 2008-09-26T16:35:03Z <p>'Big-O' notation is used to compare the growth rates of two functions of a variable (say n) as n gets very large. If function f grows much more quickly than function g we say that g = O(f) to imply that for large enough n, f will <em>always</em> be larger than g up to a scaling factor.</p> <p>It turns out that this is a very useful idea in computer science and particularly in the analysis of algorithms, because we are often precisely concerned with the growth rates of functions which represent, for example, the time taken by two different algorithms. Very coarsely, we can determine that an algorithm with run-time t1(n) is more efficient than an algorithm with run-time t2(n) if t1 = O(t2) for large enough n which is typically the 'size' of the problem - like the length of the array or number of nodes in the graph or whatever.</p> <p>This stipulation, that n gets large enough, allows us to pull a lot of useful tricks. Perhaps the most often used one is that you can simplify functions down to their fastest growing terms. For example n^2 + n = O(n^2) because as n gets large enough, the n^2 term gets <em>so much larger</em> than n that the n term is practically insignificant. So we can drop it from consideration.</p> <p>However, it does mean that big-O notation is less useful for small n, because the slower growing terms that we've forgotten about are still significant enough to affect the run-time. </p> <p>What we now have is a tool for comparing the costs of two different algorithms, and a shorthand for saying that one is quicker or slower than the other. Big-O notation can be abused which is a shame as it is imprecise enough already! There are equivalent terms for saying that a function grows less quickly than another, and that two functions grow at the same rate.</p> <p>Oh, and do I use it? Yes, all the time - when I'm figuring out how efficient my code is it gives a great 'back-of-the-envelope- approximation to the cost. </p> http://stackoverflow.com/questions/136734/key-presses-in-python/136741#136741 1 Answer by HenryR for Key Presses in Python HenryR 2008-09-25T22:59:55Z 2008-09-25T22:59:55Z <p>It's probably <em>possible</em> - but where do you want the key presses to go? To another application? That would probably be a case of understanding your platform's windowing toolkit and sending the right messages to the right window.</p> <p>Clarify your requirements, and I'm sure we can help out.</p> http://stackoverflow.com/questions/135664/how-many-bytes-per-element-are-there-in-a-python-list-tuple/135748#135748 2 Answer by HenryR for How many bytes per element are there in a Python list (tuple)? HenryR 2008-09-25T20:15:48Z 2008-09-25T20:15:48Z <p>This is implementation specific, I'm pretty sure. Certainly it depends on the internal representation of integers - you can't assume they'll be stored as 32-bit since Python gives you arbitrarily large integers so perhaps small ints are stored more compactly. </p> <p>On my Python (2.5.1 on Fedora 9 on core 2 duo) the VmSize before allocation is 6896kB, after is 22684kB. After one more million element assignment, VmSize goes to 38340kB. This very grossly indicates around 16000kB for 1000000 integers, which is around 16 bytes per integer. That suggests a <em>lot</em> of overhead for the list. I'd take these numbers with a large pinch of salt.</p> http://stackoverflow.com/questions/132798/what-should-every-programmer-know/133148#133148 1 Answer by HenryR for What should every programmer know? HenryR 2008-09-25T12:54:01Z 2008-09-25T12:54:01Z <p>What you don't know.</p> http://stackoverflow.com/questions/120937/what-is-test-and-set-used-for/121086#121086 0 Answer by HenryR for What is Test-and-Set used for? HenryR 2008-09-23T13:43:29Z 2008-09-23T13:43:29Z <p>Imagine you were writing a banking application, and your application had a request to withdraw ten pounds (yes, I'm English ;) ) from the account. So you need to read the current account balance into a local variable, subtract the withdrawal and then write the balance back to memory.</p> <p>However, what if another, concurrent request happens between you reading the value and you writing it out? There's the possibility that the result of that request will get completely overwritten by the first, and the account balance will be incorrect.</p> <p>Test-and-set helps us fix that problem by checking that the value your overwriting is what you think it should be. In this case, you can check that the balance was the original value that you read. Since it's atomic, it's non-interruptible so no-one can pull the rug out from under you between the read and the write. </p> <p>Another way to fix the same problem is to take out a lock on the memory location. Unfortunately, locks are tremendously difficult to get right, hard to reason about, have scalability issues and behave badly in the face of failures, so they're not an ideal (but definitely practical) solution. Test-and-set approaches form the basis of some Software Transactional Memories, which optimistically allow every transaction to execute concurrently, at the cost of rolling them all back if they conflict.</p> http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115497#115497 0 Answer by HenryR for Algorithm to detect intersection of two rectangles? HenryR 2008-09-22T15:25:37Z 2008-09-22T15:25:37Z <p>You could find the intersection of each side of the angled rectangle with each side of the axis-aligned one. Do this by finding the equation of the infinite line on which each side lies (i.e. v1 + t(v2-v1) and v'1 + t'(v'2-v'1) basically), finding the point at which the lines meet by solving for t when those two equations are equal (if they're parallel, you can test for that) and then testing whether that point lies on the line segment between the two vertices, i.e. is it true that 0 &lt;= t &lt;= 1 and 0 &lt;= t' &lt;= 1.</p> <p>However, this doesn't cover the case when one rectangle completely covers the other. That you can cover by testing whether all four points of either rectangle lie inside the other rectangle. </p> http://stackoverflow.com/questions/608779/what-are-the-enduring-properties-of-a-book-on-algorithms/608813#608813 Comment by HenryR on What are the enduring properties of a book on algorithms? HenryR 2009-03-12T00:14:16Z 2009-03-12T00:14:16Z tiny nitpick: Knuth didn't create Latex, he created Tex. Leslie Lamport made the set of macros that make up LaTex. http://stackoverflow.com/questions/543877/if-you-could-take-one-computer-science-course-now-what-would-it-be Comment by HenryR on If you could take one computer science course now, what would it be? HenryR 2009-02-12T23:42:36Z 2009-02-12T23:42:36Z @Steve: I very nearly have three :) But a) there's always more to study, I've grown progressively more specialised and b) it's interesting to see what parts of academia still interests people who might have left it behind. http://stackoverflow.com/questions/515214/total-number-of-nodes-in-a-tree-data-structure/515285#515285 Comment by HenryR on Total number of nodes in a tree data structure? HenryR 2009-02-05T11:01:17Z 2009-02-05T11:01:17Z @j_random_hacker: right, yes, silly me. http://stackoverflow.com/questions/515214/total-number-of-nodes-in-a-tree-data-structure/515285#515285 Comment by HenryR on Total number of nodes in a tree data structure? HenryR 2009-02-05T10:37:25Z 2009-02-05T10:37:25Z In fact your solution to the equation is a bit off - it should be simply (N^L)-1 (imagine if N were 2 and L were 3 - the sum is 1+2+4=7=(2^3)-1). This can be shown fairly easily through induction. http://stackoverflow.com/questions/471199/what-is-the-difference-between-n-and-on Comment by HenryR on What is the difference between Θ(n) and O(n)? HenryR 2009-01-23T10:14:04Z 2009-01-23T10:14:04Z However, this is a pet bug-bear of mine, and something people get wrong a lot! http://stackoverflow.com/questions/471199/what-is-the-difference-between-n-and-on/471223#471223 Comment by HenryR on What is the difference between Θ(n) and O(n)? HenryR 2009-01-23T10:11:13Z 2009-01-23T10:11:13Z You missed a crucial point - these are true only for all n &gt; n1, i.e. asymptotically. http://stackoverflow.com/questions/471199/what-is-the-difference-between-n-and-on/471213#471213 Comment by HenryR on What is the difference between Θ(n) and O(n)? HenryR 2009-01-23T10:09:56Z 2009-01-23T10:09:56Z But is wrong! The number of steps is bounded above by n^2 as n gets very large. However, an algorithm that runs in n^2 + c steps takes more than n^2 steps, but is still O(n^2). Big-O notation only describes <i>asymptotic</i> beahviour. http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem/210870#210870 Comment by HenryR on What is an NP-complete problem? HenryR 2008-10-17T10:35:59Z 2008-10-17T10:35:59Z eesh. This is not right. It's not even wrong. http://stackoverflow.com/questions/58640/great-programming-quotes/58956#58956 Comment by HenryR on Great programming quotes HenryR 2008-09-29T23:56:10Z 2008-09-29T23:56:10Z yes!!! Got a letter published in the newspaper on the back of that one... http://stackoverflow.com/questions/151147/mathematics-for-computer-science-students/151174#151174 Comment by HenryR on Mathematics for Computer Science Students HenryR 2008-09-29T23:42:45Z 2008-09-29T23:42:45Z The book is both fantastic, and fantastically challenging. You should be able to get through it with dedicated study, but it's not easy. One of the most rewarding books I've read (although not done all the questions!) http://stackoverflow.com/questions/149577/need-an-algorithm-for-collapsing-netblock-ranges-into-lists-of-superset-ranges Comment by HenryR on need an algorithm for collapsing netblock ranges into lists of superset ranges HenryR 2008-09-29T16:52:50Z 2008-09-29T16:52:50Z Are the ranges going to be disjoint? If not, how do you want your algorithm to handle overlapping ranges, many of of which a subrange could be part of? http://stackoverflow.com/questions/129628/what-is-declarative-programming/129689#129689 Comment by HenryR on What is declarative programming? HenryR 2008-09-29T11:35:28Z 2008-09-29T11:35:28Z Although XML is declarative, I wouldn't go so far as to say it's declarative <i>programming</i> simply because there are no active semantics associated with the markup. Saying that something is an address does not help with figuring out what you want to do with it. http://stackoverflow.com/questions/111307/whats-pnp-and-why-is-it-such-a-famous-question/127831#127831 Comment by HenryR on What's "P=NP?", and why is it such a famous question? HenryR 2008-09-27T21:39:05Z 2008-09-27T21:39:05Z Re: emulating NDTMs with DTMs - the only difference is that NDTMs know 'instinctively' what choice to make at any branch point. You can simulate this behaviour by making <i>every</i> choice at branch points, through breadth-first search, and you'll eventually follow the same computation path as the NDTLM http://stackoverflow.com/questions/133008/what-is-big-o-notation-do-you-use-it/133036#133036 Comment by HenryR on What is Big O notation? Do you use it? HenryR 2008-09-27T16:24:04Z 2008-09-27T16:24:04Z Also, Big-O simply says that an algorithm's cost is <i>no worse</i> than a given function, it says nothing about how tight that bound is. http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111909#111909 Comment by HenryR on Did you ever switch from one programming language to another? HenryR 2008-09-27T13:24:37Z 2008-09-27T13:24:37Z which of the two kinds is Prolog?