Articles tagged C++

  1. A language people use and bitch about
  2. Negative Sequence Indices in Python
  3. 8 Queens Puzzle++
  4. Easy as Py
  5. 2147483647
  6. You wait all day for a bus…
  7. Reverse, Esrever
  8. “Solutions”
  9. ACCU 2013
  10. More adventures in C++
  11. Singly Linked Lists in C++
  12. C++ Concurrency in Action. A glowing review of Anthony Williams' book on C++11's support for concurrency
  13. Set.insert or set.add?
  14. Define pedantic
  15. Hiding iterator boilerplate behind a Boost facade
  16. Binary search revisited
  17. Binary search returns … ?
  18. Next permutation: When C++ gets it right. An investigation into a classic algorithm for generating the distinct permutations of a sequence in lexicographical order.
  19. Code Rot. What happens when we stop tending to our code? It decays. This article investigates why.
  20. Converting integer literals in C++ and Python
  21. Inner, Outer, Shake it all abouter. Encapsulation is about allocating responsibility and easing utility rather than protecting data.
  22. Copy, load, redirect and tee using C++ streambufs. The C++ iostream library separates formatting from lower level read/write operations. This article shows how to use C++ stream buffers to copy, load, redirect and tee streams.
  23. Generic documentation
  24. Longest common subsequence. An investigation into the classic computer science problem of calculating the longest common subsequence of two sequences, and its relationship to the edit distance and longest increasing subsequence problems.
  25. comp.lang.name? Python was named after a comedy troupe. This note discusses what makes a good name for a computer language.
  26. Books, blogs, comments and code samples
  27. Sums and sums of squares in C++. Reduce is a higher order function which applies a another function repeatedly to a collection of values, accumulating the result. Well known to functional programmers, reduce is also a standard C++ algorithm.
  28. Looping forever and ever
  29. Syntactic Sugar
  30. Macros with halos
  31. Fixing header file dependencies. A simple script to check header files are self contained
  32. Stop the clock, squash the bug. Which is better, a clock which loses a minute a day or one which is stopped? An investigation into how we find and fix software defects.
  33. Top Ten Percent. The most efficient way to sort the top 10% of a collection.
  34. Top Ten Tags. Choosing the right algorithm to select the N largest items from a collection.
  35. From Hash Key to Haskell. A note on keys, characters, smileys, digraphs and Haskell.
  36. Elegance and Efficiency. Must elegant code be efficient? This article investigates.
  37. Big City Skyline Puzzle. Comments on a novel computer science puzzle. When machine resources are scarce, a compiled language offers precise control.
  38. Ongoing Peer Review
  39. Pitching Python in three syllables
  40. Koenig’s first rule of debugging. The problems caused by the C++ compilation model, dependencies and cryptic compile diagnostics. If an expert like Andrew Koenig can’t get it right, what hope for the rest of us?
  41. Shameful Names
  42. He Sells Shell Scripts to Intersect Sets. The Unix command shell contains a lot of what I like in a programming environment: it’s dynamic, high-level, interpreted, flexible, succinct. This article shows the Unix tools in action.
  43. The Third Rule of Program Optimisation
  44. Evolving Python in and for the real world
  45. Introducing Java
  46. Mixing Python and C++
  47. Release then Test
  48. Casualties in the great computer shootout. An investigation into various dimensions of some speed benchmark programs.
  49. Retro-fitting coding standards
  50. Code Craft
  51. Printed C++ Journals
  52. Review of Pete Becker’s TR1 Book
  53. Smart Pointers, Dumb Programmers. A note describing how a smart pointer tripped me up.
  54. Joined Output and the Fencepost Problem. Items and the spaces between them: some notes on the fencepost problem and joining up strings.
  55. Computer Language Complexity
  56. Complacency in the computer industry
  57. The Lazy Builder’s Complexity Lesson. A discussion of algorithmic complexity, and a demonstration of how the C++ standard library allows programmers to write code which is both concise and efficient.
  58. String literals and regular expressions. An article about string literals, escape sequences, regular expressions, and the problems encountered when mixing these together.
  59. There’s no escape??!
  60. Parsing C++
  61. Are List Comprehensions the Wrong Way Round?
  62. Message to Self. What’s this?
  63. Octal Literals
  64. A Subversion Pre-Commit Hook. How to install and test a simple Subversion pre-commit hook script.
  65. Binary Literals
  66. Readable Code
  67. Built in Type Safety?
  68. The case against TODO. A neat label for work in progress or an easy way to disguise the flaws in a codebase?
  69. Metaprogramming is Your Friend. An investigation into metaprogramming techniques used by lazy C, C++, Lisp and Python programmers.
  70. A Mini-Project to Decode a Mini-Language
  71. Code in Comments. Don't comment out dead code, delete it!