Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author |
user:1234 user:me (yours) |
| Score |
score:3 (3+) score:0 (none) |
| Answers |
answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections |
title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status |
closed:yes duplicate:no migrated:no wiki:no |
| Types |
is:question is:answer |
| Exclude |
-[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with reinventing-the-wheel
Search options not deleted
user 219646
For when you know you are reinventing the wheel, but are doing it anyways. Questions with this tag involve code that is already fully implemented (such as from a library).
2
votes
C++ Arraylist Implementation
Do not use 0 or NULL to represent the null pointer
Instead use nullptr which is type safe. Why?
Well, there's quite the problem when you return the type T because objects in C++ (not confuse with poin …
4
votes
Accepted
Modern C++ Linked List
The code is pretty good, but there are some parts of it that aren't intuitive enough to be readed cleverly.
Don't misunderstand me, your design is good, but it is quite complex to be seen through prop …
4
votes
Accepted
Sorting an array using a Binary Search Tree with C++
Your code is readable and easy to understand. Said that I would like to make you think about how you handle the operations in your BSTree.
You are building the functions alone, and what that causes i …