Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼



site Search Results

Results for: Andrew Koenig

Sort by: Relevance | Date

The Dr. Dobb's Developer Library DVD Order the NEW Discounted Dr. Dobb's Developer Library DVD 6
Purchase the fully searchable DVD for $59.95 - a 60% discount! Features 21 years of Dr. Dobb's Journal, 15 years of Sys Admin magazine, 14+ years of C/C++ Users Journal, 1 year worth of Dr. Dobb's Digest, podcasts, videos and more! Order Now.

More Thoughts On Sorting

Dr. Dobb's JournalAndrew Koenig
June 01, 2011

I have received several comments from readers of this article, which I intend to address here. - C/C++

Teaching C++ Badly — How To Sort Slowly

Dr. Dobb's JournalAndrew Koenig
May 25, 2011

This post continues the discussion that I started in April about how not to teach C++. - C/C++

More Thoughts About Arrays and Vectors

Dr. Dobb's JournalAndrew Koenig
May 18, 2011

My recent comments about teaching vectors instead of arrays to C++ beginners has left an important idea unstated that I think it is worth mentioning explicitly. - C/C++

Teaching C++ Badly: Introduce Constructors and Destructors at the Same Time

Dr. Dobb's JournalAndrew Koenig
May 12, 2011

For years, I used to teach constructors, destructors, copy constructors, and copy assignment at the same time — and very early in the curriculum. My reasoning was straightforward: These four special member functions interact with each other in ways that often cause them to be used together, so why not cover them together? I originally intended that question to be rhetorical; it took me years to realize that it really had an answer. - C/C++

Avoid New and Delete for Dynamic Arrays

Dr. Dobb's JournalAndrew Koenig
May 04, 2011

This note continues the discussion I started last month about teaching C++. In it, I have been advocating the standard vector template instead of built-in arrays. - C/C++

C/C++ Programming in a UNIX Environment

Dr. Dobb's JournalMark Nelson
April 29, 2011

How long did it take you to learn C++? Do you think you could squeeze that into a single undergraduate semester, giving it only the 20% of your attention span that is due? - C/C++

More Thoughts on Arrays, Vectors, and Strings

Dr. Dobb's JournalAndrew Koenig
April 27, 2011

I'd like to say a little more about why I feel so strongly that it is a bad idea to begin by teaching C++ beginners how to use built-in arrays. - C/C++

Teaching C++ Badly: How to Misuse Arrays

Dr. Dobb's JournalAndrew Koenig
April 20, 2011

My last post listed some ways in which I've seen C++ taught badly, and promised to explain these teaching techniques in more detail. Here is the first of those explanations. - C/C++

How To Teach C++ Badly

Dr. Dobb's JournalAndrew Koenig
April 13, 2011

I've been teaching C++ a long time, so I've learned from a lot of mistakes along the way. As a result, I'm not surprised to see other people make similar mistakes. - C/C++

More Than Good Enough for Homework

Dr. Dobb's JournalAndrew Koenig
April 06, 2011

Trying to find a correct solution to the problem of putting the elements of an array in a random sequence - Design

Previous 15 16 17 18 19 20 21 22 23 24 Next