Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
show 3 more comments

closed as not constructive by Bo Persson, Aziz Shaikh, Alessandro Minoccheri, S.L. Barth, Botz3000 Nov 7 '12 at 7:25

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

41 Answers

1 2
up vote 26 down vote accepted

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.)

share|improve this answer
show 1 more comment

Here are the papers that come to mind:

share|improve this answer

How to teach yourself programming in 10 years - Peter Norvig

share|improve this answer
1  
That's not an academic paper. – Paul Nathan May 21 '10 at 17:23
2  
The question asks for published papers. – Norman Ramsey Jun 5 '10 at 15:26

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.

share|improve this answer
show 1 more comment

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.

share|improve this answer
show 1 more comment

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

share|improve this answer
1  
+1 for the skip lists paper. I was so pleased when I ran across that one a few years ago. – Jason S Jan 14 '10 at 14:25

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

share|improve this answer
1  
+1 Dijkstra's archive @ utexas is worth combing through slowly – just somebody Dec 13 '09 at 18:06

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.

share|improve this answer

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 :-).

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer
show 1 more comment

Ken Thompsons's Reflections on Trusting Trust gets me every time I read it.

share|improve this answer

Fred Brook's No Silver Bullet — Essence and Accidents of Software Engineering is probably my personal favorite.

Edit: Changed the link to point to the actual paper

share|improve this answer
show 1 more comment

C.A.R. Hoare's 1980 Turing Award Lecture: The Emperor's Old Clothes

share|improve this answer
1  
I had never seen this before, just read it... absolutely brilliant. It's good to see someone so smart/famous stating pretty much every principle of programming I've learned (the hard way) over the years. – rmeador May 19 '10 at 20:04
show 2 more comments

The one that I find I refer people to most often when trying to encourage sound OO fundamentals is Robert C. Martin's "The Open-Closed Principle".

share|improve this answer

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.

share|improve this answer
show 2 more comments

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:

share|improve this answer

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

share|improve this answer

A case against the GO TO statement, by E.W. Dijkstra

http://userweb.cs.utexas.edu/users/EWD/transcriptions/EWD02xx/EWD215.html

Any of Dijkstra's papers really, they influenced so much of modern computer science.

share|improve this answer
1  
@Nate IMHO never using goto is a bad idea. Breaking out of nested loops without goto leads to unreadable code. Understanding why goto shouldn't be used in the majority of cases is the best idea. – Yacoby May 19 '10 at 19:42
1  
I think the argument is really structured-goto vs unstructured-goto. break is an example of the former, the goto keyword is in most languages the latter. – rmeador May 20 '10 at 14:39
show 3 more comments

MapReduce: Simplified Data Processing on Large Clusters

Google's paper on a technique for massively distributed computation. This kind of thing will become a lot more important as we enter the multicore era.

share|improve this answer
show 1 more comment

My link was introduced to me from Coding Horror. Having been a TA of an introductory Computer Science course I found it fascinating.

The Camel Has Two Humps

share|improve this answer

A rational design process: How and why to fake it by DL Parnas (IEEE Transactions on Software Engineering. Volume 12 , Issue 2, February 1986). Old but still relevant today.

share|improve this answer
1  
We had an engineering manager print out copies of this and hand it out. Very good read. – Tony Arkles May 22 '10 at 20:33

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.

share|improve this answer

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

share|improve this answer

Six ways to write more comprehensible code
aka How to keep your code from destroying you
by Jeff Vogel

Summary: As a developer, time is your most valuable resource. These six tips on how to write maintainable code are guaranteed to save you time and frustration: one minute spent writing comments can save you an hour of anguish.

Tips:

  1. Comment like a smart person.
  2. Define constants a lot. No, a LOT.
  3. Don't use variable names that will mock you.
  4. Do error checking. You make errors. Yes, you.
  5. "Premature optimization is the root of all evil." - Donald Knuth
  6. Don't be too clever by half.

Mostly for intermediate or those moving into professional environments, but a good read regardless.

share|improve this answer

The Real Reason Why Software Engineers Need Math [pdf]

Explains why mathematics is important in the education of a software engineer.

share|improve this answer

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.

share|improve this answer
1  
Sure, but they probably won't understand why it was in their box! – thursdaysgeek Feb 20 '09 at 3:53
show 2 more comments
1 2

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