Cinjection ( Oleksi Derkatch )
Canada, Ontario
|
|
Offline
Profile Views 3,063 |
|
|
|
Articles
|
|
|
|
Intorduction to memorization.
Programming, Posted 41 Days Ago
Memoization(not memorization) is a programming technique often used in dynamic programming. In essence, it just means having your program remember previous calculations and reuse those results in similar calculations later. It's a rather simple techn...
|
Average Rating
|
7.00
|
Total Ratings
|
1
|
Comments
|
0
|
|
|
|
Strings in C++
Programming, Posted 44 Days Ago
In C, if you ever wanted to use strings, you would need to use a null-terminated array of characters. It was ugly, unsophisticated, and very susceptible to buffer overflows. C++ and it's STL gives you a much better solution; the string class.
Maki...
|
Average Rating
|
6.00
|
Total Ratings
|
2
|
Comments
|
1
|
|
|
|
Vectors in C++
Programming, Posted 44 Days Ago
The C++ STL library defines a vector class which gives you a pre-made generic vector. You can use it in the same way as you would a regular array, only a vector is safer to use and more sophisticated.
Creating one is simple:
#include <vec...
|
Average Rating
|
9.00
|
Total Ratings
|
2
|
Comments
|
2
|
|
|
|
Use Cases
Software Development, Posted 49 Days Ago
Intro
Today I will be talking about use cases. This article is not about programming, but rather about planning software projects.
A use case documents a feature that a user should have with the program. In a professional project, there are hun...
|
Average Rating
|
8.50
|
Total Ratings
|
2
|
Comments
|
2
|
|
|
|
[C++] Pointers and their practical uses in programming.
Programming, Posted 95 Days Ago
Intro
One of the most handiest features of C++ (and C) are pointers. Many beginner programmers learn about pointers and don't see the practical uses for them. This tutorial will go over pointers and point out multiple practical uses of them in C++...
|
Average Rating
|
9.67
|
Total Ratings
|
3
|
Comments
|
0
|
|
|
|
The Differences and Similarities Between C and C++
Programming, Posted 154 Days Ago
Intro
There have always been debates about the differences between C and C++. Hopefully this article will clear somethings up. I've seen a lot of content online, where C++ programmers assume that they know everything about C, just because they kno...
|
Average Rating
|
9.50
|
Total Ratings
|
8
|
Comments
|
0
|
|
|
|
[C++] A tour of OOP
Programming, Posted 160 Days Ago
Intro to OOP
Hey guys. Today I will be writing a tutorial on Object Oriented Programming(OOP) in C++. This
will hopefully help someone learn the heart of C++ and will help me reinforce my own knowledge.
The three major concepts of OOP are: encap...
|
Average Rating
|
7.33
|
Total Ratings
|
6
|
Comments
|
0
|
|
|
|
[C++] Templates
Programming, Posted 160 Days Ago
I've noticed that there is no tutorial on arguably C++'s most useful feature, templates. I thought,
what the hell, I might as well write one.
Templates are a way of making functions and classes type independent. They allow you to write
one gener...
|
Average Rating
|
7.50
|
Total Ratings
|
2
|
Comments
|
0
|
|
|
|