Home > Tag Archives: technology

Tag Archives: technology

WoW Classic

World of Warcraft – Classic And finally, the opening of Blizzard’s servers for the old world of Azeroth, as it was on vanilla (the first game version before any expansions) is almost ...

Read More »

Boolean Algebra and Logical Functions

Chapter II – Logical Systems Boolean Algebra and Logical Functions Chapter I – Numeral Systems Logical or boolean operations Boolean Algebra and Logical Functions Introduction Boolean Algebra Laws De Morgan’s Laws Logic ...

Read More »

Doubly linked list with class templates (Part II)

In the first part of this article, we saw the class templates that will handle our doubly linked list. Now, let’s see some examples on how to use them! In the complete ...

Read More »

Doubly linked list with class templates (Part I)

In this article I’m going to show you an example with an implementation of a doubly linked list using class templates in C++. For a better understanding of this article, the reader ...

Read More »

Doubly linked lists in C++ (Part II)

In the first part of this article, I made an introduction to the doubly linked lists and I talked about methods to insert nodes. Let’s now see methods for removing nodes. Removing ...

Read More »

Function templates in C++

In a previous article, I talked about a class template in C++. Now, I’m going to talk about function templates. A function template is very similar to a class template, allowing the ...

Read More »

Class template in C++

The template declaration is C++ allows us to define generic classes and functions. In the case of a class template, we can define classes where we have properties that can assume any ...

Read More »

Singly linked lists in C++ (Part III)

 In the first and second parts of this article, we saw the definition of singly linked lists, methods for inserting, removing and listing nodes and one example with a list with nodes ...

Read More »

Logical or boolean operations

Chapter II -Logical Systems Logical or boolean operations Chapter I – Numeral Systems Logical or boolean operations Introduction Operations with more than one bit Practical example Boolean Algebra and Logical Functions Logic ...

Read More »

Negative integers in binary

Chapter I – Numeral systems Negative integers in binary Numeral systems Binary-Decimal conversion with floating point Arithmetic operations in binary Negative integers in binary How to represent negative integers in binary Notions ...

Read More »