vote up 28 vote down star
50

What are your favorite programming-related / cs academic published papers?

It could be a functional pearl, a programming-language paper like those often cited on lambda-the-ultimate.org, etc. Really, anything vaguely related to programming. Please also explain why you like the paper.

flag

17 Answers

vote up 7 vote down check

For this audience I think I have to go with John Hughes's seminal paper Why Functional Programming Matters because it is densely packed with great ideas and because the topic of the paper is programming. I like the paper because any programmer can pick it up and read it and most will come away excited by the ideas. Also, there are lots of examples in the paper, so you can immediately pick up some kind of Haskell implementation and start trying the ideas for yourself right away.

For the academics in the crowd, I'll also give a shout-out to Tony Hoare's great paper Proof of Correctness of Data Representations. It's intensely mathematical, but it is the canonical reference for a critically important and poorly understood technique: abstract data types. If we all understood about abstraction functions and representation invariants, the world would be a far better place. Heck, I'd just settle for getting people to document their representation invariants and leaving me to figure out the abstraction functions for myself. (Some of Tony's best papers have been collected into a book called Essays in Computing Science. Tony is one of my heroes and this collection has some fabulous chapters including Tony's wonderful Turing lecture on 'The Emperor's New Clothes; a talk he gave to a lay audience on what programming is; a proof of a simple program, finding the kth largest element in an array; and many other nice things. Even if you're not mathy you can pick up this book and skip the mathy chapters and still enjoy it a lot.)

link|flag
vote up 1 vote down

I can't believe nobody has included the (possibly) most referenced paper on this site:
Go To Statement Considered Harmful - Edsger W. Dijkstra

Some of my favorites:
What Every Computer Scientist Should Know About Floating-Point Arithmetic - David Goldberg
A Personal Computer For Children of All Ages - Alan Kay (written in 1972, also a Wired interview with Kay)
Skip Lists: A Probabilistic Alternative to Balanced Trees - William Pugh

link|flag
vote up 0 vote down

It would be hard to not include "No Silver Bullet" by Fred Brooks.

link|flag
vote up 3 vote down

I like Google's MapReduce paper. If you've ever wondered how they process all that data then this is the place to go. It touches on functional programming and distributed processing, which are two of the big topics these days.

link|flag
+1, easily digestible paper – just somebody Dec 13 at 18:02
vote up 2 vote down

Trace Trees [PDF] by Andreas Gal, Michael Bebenita, Mason Chang, Michael Franz

Used by Mozilla Tracemonkey javascript interpreter, and contributed to the "javascript interpreter wars."

see also:

link|flag
vote up 3 vote down

Don't mean to get a little too classic on you, but I've gotta say Turing's On Computable Numbers, with an Application to the Entscheidungsproblem has got to be, at least I would consider, one of the most significant (even if only historically) papers in CS. And Charles Petzold's The Annotated Turing does an excellent job of illustrating the significance, as well as making the mathematics understandable, even to a mildly-mathematical programmer such as myself. In fact, I'm pretty sure Jeff mentioned it in one of the Stackoverflow podcasts.

link|flag
vote up 1 vote down

I really enjoyed A History of Erlang by Joe Armstrong, Erlang's creator. It's a really interesting inside look at the creation of a new (and exciting) programming language.

link|flag
vote up 3 vote down

of course, the answer would be any computer generated scientific paper!

but joking aside, I'm (like many other probably) really intrigued by the whole P != NP problem.

The first time I heard about (this was in my first bachelor year at VUB) it had a huge influence on me. I still can remember how the problem got my attention for several weeks... I kept reading and looking up information about, even foolishly tried to come up with some clever algorithms on my own. Good times it were back then!

here is an example of such a paper, but there are many, many others just like it

link|flag
vote up 2 vote down

Gotta throw in Leslie Lamport's Time, Clocks, and the Ordering of Events in a Distributed System. Not so much for the clock sync part, but for the distributed event ordering. First paper I know of to talk about what causality really means in a distributed system. None of today's big webapps would really work without that :-).

link|flag
vote up 1 vote down

The page rank citation ranking system

It describes how Google works.

Google uses it for web documents, but it's useful for pretty much any directed graph structure. For non directed graph's it's subject to manipulation, but if you "trust" the nodes in the graph, then it will work for non directed graphs too.

One interesting application of it to programing would be to index libraries in source code as a ranking system in a code / api documentation search.

It would be really cool, for example, to build an index of something like source forge (or code plex), using "page rank" between types and methods as a relevance metric.

The easiest language to do it for would be Java (because Java namespaces use reverse domain names by convention).

I wrote a prototype of something like this when I worked at Microsoft. It indexed VB source code, api documentation, and compiled .net assemblies. It also did stemming of identifier names, recogonzing camel casing, pascal casing, and underscores, and split things up into multiple groups.

It got pretty good results.

I was pretty new though (I had only been there a couple weeks), I worked on a different team (the VB team), so I wasn't very successful in convincing the MSDN help folks to adopt it. They ended up just using Windows Live Search.

In any case....

Another use for it would be for Stack Overflow.

You could, for example, treat stack overflow as a large graph, with edges from people to documents, and from documents to people. If you then weighted the edges based on reputation, you could compute page rank over the graph, and then use the page rank to sort search results.

This would produce different results than what Google does (because the edges in normal page rank are not weighted), but I think for the purposes of searching Stack Overflow questions it would yield better results than Google.

I'm willing to bet that most links into stack overflow from the "outside" are to the main page, not to individual questions.

This means from Google's point of view, most stack overflow questions and answers are pretty much equivalent.

But, if you calculated page rank, using "reputation" to weight edges, you would get relevance results that reflected the values of the Stack Overflow community.

In any case... they paper is really good. You should read it.

link|flag
vote up 7 vote down

Here are the papers that come to mind:

link|flag
vote up 3 vote down

Big Ball of Mud

Abstract:

While much attention has been focused on high-level software architectural patterns, what is, in effect, the de-facto standard software architecture is seldom discussed. This paper examines this most frequently deployed of software architectures: the BIG BALL OF MUD. A BIG BALL OF MUD is a casually, even haphazardly, structured system. Its organization, if one can call it that, is dictated more by expediency than design. Yet, its enduring popularity cannot merely be indicative of a general disregard for architecture.

These patterns explore the forces that encourage the emergence of a BIG BALL OF MUD, and the undeniable effectiveness of this approach to software architecture. What are the people who build them doing right? If more high-minded architectural approaches are to compete, we must understand what the forces that lead to a BIG BALL OF MUD are, and examine alternative ways to resolve them.

A number of additional patterns emerge out of the BIG BALL OF MUD. We discuss them in turn. Two principal questions underlie these patterns: Why are so many existing systems architecturally undistinguished, and what can we do to improve them?

Why do I like it? It's an irreverent but useful look at the software development world as it actually exists.

link|flag
vote up 1 vote down

It might not seem programming related, but it really is something that programmers should be aware of: http://www.apa.org/journals/features/psp7761121.pdf ("Unskilled and Unaware of It: How Difficulties in Recognizing One's Own Incompetence Lead to Inflated Self-Assessments")

Oftentimes, we only see our own knowledge, and the corresponding ignorance of someone else in our own field. We mock the "PhD Professor" who can't remember how to get their email. What we fail to see is our own ignorance in their and other fields. Once we approach other people, our customers, knowing that they have knowledge that we don't, and we have knowledge that they don't, and that our goal is to help them do their jobs better, we can communicate without arrogance and condescension.

link|flag
Interesting read. – Paul Nathan Dec 11 '08 at 4:59
A very good paper to put (anonymously) in someones inbox... Pure evil. – per.mildner Feb 18 at 10:02
1  
Sure, but they probably won't understand why it was in their box! – thursdaysgeek Feb 20 at 3:53
vote up 3 vote down

G'day,

While not purely academic Edsger Dijkstra's paper "The Humble Progammer", his Turing Lecture from 1972, is an excellent paper to read. My favourite quote is

The competent programmer is fully aware of the strictly limited size of his own skull; therefore he approaches the programming task in full humility, and among other things he avoids clever tricks like the plague.

HTH

cheers,

Rob

link|flag
+1 Dijkstra's archive @ utexas is worth combing through slowly – just somebody Dec 13 at 18:06
vote up 4 vote down

By far: Functional Reactive Animation by Conal Elliott and Paul Hudak. It was the paper that got me interested in functional reactive programming, but more importantly it is a fantastic exposition of the design methodology called Semantic Design, which has had a profound impact on the way I think about software.

Pickler Combinators is another one of my favorites, for its minimal elegance in solving a practical problem.

link|flag
To be clear, functional reactive animation is since outdated with much research in the FRP community, but it is still my favorite paper on the subject. – luqui Dec 11 '08 at 0:33
The FRP paper was voted the most influential paper from ICFP 1997, I believe. – Norman Ramsey Dec 11 '08 at 5:17
vote up 4 vote down

Oh there are so many fantastic papers. Purely Functional Data Structures is great. I'm still reading it, but so far it has been an excellent read. The implementations of the data structures are short and beautiful.

link|flag
Chris turned his thesis into a book. It's a great book. – Norman Ramsey Dec 11 '08 at 5:07
vote up 8 vote down

I have in mind a somewhat forgotten paper: Structured Programming with go to Statements, Donald Knuth, ACM Computing Surveys, Vol 6, No. 4, Dec. 1974.

It's actually a rebuttal to the "GOTO considered harmful" creed (saying that "GOTO is sometimes okay, really"), a view that is now out of fashion (to say the least!), but it also says some important things about the practice of programming. Most famously, it is the source of the quote "Premature optimization is the root of all evil". :-)
[It's also instructive to read the quote in its original context, to see what Knuth did not mean.]

Quite related is Knuth's Computer Programming as an Art, Knuth’s Turing Award lecture (1974), printed in Communications of the ACM, Volume 17, Issue 12, Dec. 1974, which is available e.g. here.

link|flag
I just found out that the excellent Mark Jason Dominus (mjd, blog.plover.com) also considers this paper (Structured programming with go to Statements) "my single all-time favorite computer science paper": blog.plover.com/prog/Hoare-logic.html#fn3 – ShreevatsaR Aug 25 at 21:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.