vote up 13 vote down star
6

What is the most influential CS class that you've taken? This could mean the one which made you a better programmer, the one which changed the way you think about CS... maybe even the one that made you decide not to major in CS, although I doubt we'll see many of those around here.

I have two candidates: One was Computer Systems, where we learned how computers work starting from logic gates leading into designing and simulating our own RISC computer, then creating a compiler for a simple language to compile to that assembly code.

Another is this course about Programming Languages I'm taking. It's teaching me a lot of new concepts like continuations, what mutation really is, etc...

flag

33 Answers

1 2 next
vote up 21 vote down

Compilers. It really opened my eyes to the intricacies of how programs are made.

link|flag
vote up 18 vote down

Theory of Computation taught me that CS had deep, profound roots in formal mathematics: P versus NP is mind-blowing. To quote our prof: with this, who needs drugs?

Design & Analysis of Algorithms taught me that CS was cooler than mathematics: in math, we can debate the elegance of a proof, but that is subjective. In algorithms, the proofs can be elegant, but also have a sense of speed (the big-O notation etc). That was thrilling, because I realized comp sci is like putting my mathematics skills in a drag race.

link|flag
show 3 more comments
vote up 16 vote down

Analysis of algorithms, for time and space. It is by far the most commonly used technique, and essential to keep in mind before attempting to optimize anything.

If self-taught programmers need to learn one thing that they might not otherwise automatically pick up, it is this. It's an essential tool for the toolbox.

link|flag
vote up 5 vote down

Comparative programming languages, where we wrote the same programs in Lisp, COBOL, Fortran, Prolog, C, and Java.

link|flag
show 3 more comments
vote up 3 vote down

the best CS course I had was actually a Philosophy elective: Predicate Calculus. This led to a better understanding of boolean expressions (in particular the ability to reduce complex ones to essential cases, which is very useful when refactoring highly modified legacy code) and a greater appreciation for the extreme difficulty of proving program correctness.

link|flag
vote up 3 vote down

Operating Systems I & II

link|flag
vote up 3 vote down

"Data Structures and Algorithm Analysis", defiantly - learned Stacks, queues, linked list, sorting searching, recursion – all the good stuff.

link|flag
show 2 more comments
vote up 3 vote down

I had a "Programming Languages" class where we had to write a program in a new language each week (C++, awk, Perl, etc...).

It taught me that each language is a tool. Some are better than others for different tasks -- don't be afraid to branch out into new areas. And if something is really painful (like text processing in C) you're probably using the wrong tool. A few quick Google searches should find it.

link|flag
vote up 3 vote down

I would have to say the class that really opened my eyes to some deep results in computer science was the Theory of Computation class I took in my final year of my undergraduate. For a taste of the type of result we worked up to, have a look at Rice's Theorem. The course was both very difficult and very enjoyable.

There's not any single result from that class that I now rely on in my day-to-day research or programming. Rather, it felt like tearing away all of the arbitrary conventions of programming until the raw logic of computing was exposed. In a good course you should learn about the difference between fully and partially computable functions, complexity classes, the limits of recursion, and have a strong appreciation for the Halting Theorem and its implications.

If you want a accessible introduction to the theory of computation, I can strongly recommend the relevant chapter in Feynman's Lectures on Computation. The rest of the book is excellent too, and very readable.

link|flag
vote up 2 vote down

The Computer Organization and Architecture class at the community college I went to: understanding how the actual bits flow around made massive improvements in my higher-level coding.

link|flag
show 2 more comments
vote up 2 vote down

Computer Graphics: it combines math, data structures, and performance with pretty images. Plus you realize what that linear algebra junk was all about.

link|flag
vote up 2 vote down

The class was called "principles of programming" but it was really a serious functional programming class. It did more for my raw programming ability than any other class I ever took. Years later, I would find myself amazed when I was talking with somebody who had been doing software professionally for thirty years but had no idea what a closure is.

link|flag
show 3 more comments
vote up 1 vote down

Building my own OS in a RTOS class taught me a lot. Compilers taught me a lot, and computer organization and architecture taught me a lot.

link|flag
vote up 1 vote down

Interestingly I think CS 101 was the most influential for me. Before then I thought I liked Computer Science, but after that I absolutely knew that it was what I wanted to do. My professor “Rocky Ross” as an absolute pleasure to have around, he was one of the more established professors at my university, yet loved teaching 101 and inspiring his students. I think the difference between an average and a great 101 class can be life changing for a lot of younger students.

After that, I had Rocky for my compilers class, which was the first time I had to develop a large application over an extended period of time with a team. It also brought together all the little pieces of computer science that I had learned until then.

link|flag
vote up 1 vote down

I've only taken one, a C class. When I asked how strings were copied (I'd been using Turbo Pascal, where a string is allocated on the stack and assigning one string to another involves a memcpy) and the professor couldn't tell me -- more importantly, couldn't tell me that I wasn't asking the right question -- I realized I was in the wrong place.

I wish I'd taken a compilers class and an algorithm class, which teach (I think) the kind of stuff that it takes a while to realize you don't know.

The best on-the-job training -- in conceptual stuff, and taking a step back from the daily "fix bugs! make it work!" grind -- has been being involved in interviewing & hiring. It's forced me to put words to things I only knew conceptually. (ADG, heap, Trie, etc) And the best candidates always teach me something.

link|flag
vote up 1 vote down

Without a doubt Compiler Design. I took this course as a sophomore in college. The classic "dragon" book by Aho accompanied the course. Developing a tokenizer, a recursive descent parser, and a stack-machine emulator to execute the code was some of the most rewarding code I've ever written.

link|flag
vote up 1 vote down

A bit of a duplicate of this one

link|flag
vote up 1 vote down

I have a few:

  • Compiler Design, where we implemented a Pascal- to C- (C-minus and Pascal-minus, subsets of their respective languages) over the course of the semester
  • Software Architecture & Component-Based Design: this introduced me to Domain-Driven Design and transformed the way I think about software in general
  • Operating Systems, where we implemented a very very simple file system
  • TCP/IP Networking, where we implemented a very simple simulation of the TCP/IP stack
  • Programming Languages, where we implemented a very simple Lisp interpreter in Lisp
  • Theory of Computation, which is the core Science of Computer Science
link|flag
vote up 1 vote down

4th year : Translator construction/Compiler Design - how to build the language you were fascinated by in the prevous year 3rd year : Comparitive Languages showed what problems different languages were solving 2nd year : systems programming - built a linker/loader/assembler 1st year : intro algorithms analisys

these were the undergrad courses that I mosted enjoyed - these were early 90's so they may be dated.

graduate level : debugging systems - wrote a debugger and instrumentation system . that was fascinating but not much money in it so I hack web systems to pay the bills ...

link|flag
vote up 1 vote down

Discrete Math. (UNT MATH 2770). It doesn't fall under the CS curriculum, but it was required for all CS majors. Basically "how to think like a programmer."

link|flag
vote up 1 vote down

The following in the mentioned order:- 1. Compiler Design. 2. Theory Of Computation. 3. Algorithms and Data Structures. 4. Operating System.

link|flag
vote up 1 vote down

Richard Bird's "Functional Programming" course. The first course in the first year. Up to that point I'd mostly been programming in QBasic and this totally destroyed most of my preconceptions about programming and the structure and power of computer programs.

The succinctness and power of functional languages (in our case Haskell) seemed almost like magic at the time and have influenced my programming style through another three years of undergrad and three years of professional development too.

link|flag
show 1 more comment
vote up 0 vote down

Computer architecture involving assembly programming and mathematics for computer graphics. These both provided the fundamental understanding needed for many problems in computer science.

link|flag
vote up 0 vote down

Computer Graphics.
First time I ever designed a GUI, first time I actually built a big application from scratch. First time I knew what I want to do for the rest of my academic career :)

link|flag
vote up 0 vote down

Compilers Dessing and Design & Analysis of Algorithms Just opened my mind!

link|flag
vote up 0 vote down

My final project class, which we were required to use a horribly, nightmarishly complex and shitty Java IDE (the maker made a deal with the school). I have blocked the name of the IDE out of my brain, fortunately; if I had to guess I'd say Visual Cafe. It was some meta IDE where you let it generate shittons of awful java code which you were supposed to "clean up". Of course, it was geared towards professionals; we all had no idea what the hell was going on, and consequently nobody completed their project. A disaster.

That class taught me that there is nothing better for efficiently writing good, bug free code than a well designed and fleshed out IDE.

link|flag
show 1 more comment
vote up 0 vote down

The most influential class I took as part of my degree would have been Project Management. It taught me that it's one thing to have smart people hacking out 1000s of lines of quality code day after day, but it's something completely different to ship a working product that people can actually use, and that having the former doesn't guarantee the latter.

link|flag
vote up 0 vote down

My first OOP class, which was a Java class. It really demystified a lot for me. I guess you could say I was hooked from the onset.

link|flag
vote up 0 vote down

6.001 (how to think like a computer scientist)
6.170 (how to think like a software engineer)

link|flag
vote up 0 vote down

Mines was my C class in undergrad. The class was hard (all projects due time were extented) and time consuming. Exercises that can take me 15 minutes now took me two week then. However, that class serves as the basis for my C# knowledge that I use professionally as a Software Engineer.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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