Trees – Traversal Post-order
Check if the current node is empty / null Traverse the left subtree by recursively…
42,352 total views, 1 views today
Check if the current node is empty / null Traverse the left subtree by recursively…
42,352 total views, 1 views today
Check if the current node is empty / null Display the data part of…
42,145 total views, 1 views today
Check if the current node is empty / null Traverse the left subtree by recursively…
17,193 total views, 1 views today
Greedy algorithm is an algorithmic paradigm that follows the problem solving heuristic of making the…
37,198 total views, 3 views today
In mathematics, and more specifically in graph theory, a tree is an undirected graph in…
35,850 total views, 2 views today
In the simplest case, shown in the first picture, we are given a finite set…
36,062 total views, 1 views today
//Calculul determinantilor cu metoda condensarii pivotale #include <conio.h> #include <iostream> #include <math.h> #include <stdlib.h> using…
35,260 total views, 1 views today
Bubble sort, sometimes referred to as sinking sort, is a simple sorting algorithm that repeatedly…
32,556 total views, 2 views today
Towers of Hanoi problem – Method Divide et impera BRIEF three rods A, B, C…
35,200 total views, 2 views today
EURO INFORMATICA – Corel Draw: Use 2 Point Line and Shape Tool 9,386 total views, 1 views…
9,386 total views, 1 views today
DirectX engine for support version 9, 10, 11 libraries Microsoft SDK. Features: camera view, lighting,…
338,786 total views, no views today
List with students: #include <stdio.h> #include <string.h> #include <malloc.h> #include <ctype.h> #include <conio.h> typedef struct…
24,704 total views, no views today
// Afisarea a doua multimi #include<stdio.h> #include<conio.h> void main(void) { int a[99],b[99],i,j,n,m ; char c=’f’;…
24,993 total views, no views today
An algortithm with apartments persons repartisation: #define _CRT_SECURE_NO_DEPRECATE #include<stdio.h> #include<values.h> #define MAX_APART 20 int…
25,342 total views, 2 views today
Whenever you allow your users to submit text to your website, you need to be…
40,239 total views, 3 views today
Prior to PHP 6 there was a feature called magic quotes that was created to…
40,315 total views, 3 views today
Recall from the PHP Forms Lesson where we used an HTML form and sent it…
40,919 total views, 2 views today
A “do while” loop is a slightly modified version of the while loop. If you…
40,156 total views, 2 views today
While a For Loop and While Loop will continue until some condition fails, the For…
40,247 total views, 2 views today
The for loop is simply a while loop with a bit more code added to…
13,140 total views, 2 views today
Repetitive tasks are always a burden to us. Deleting spam email, sealing 50 envelopes, and…
6,298 total views, 2 views today
An array is a data structure that stores one or more values in a single…
5,140 total views, 1 views today
Creating Your First PHP Function When you create a function, you first need to give…
6,408 total views, 2 views today
Creating the HTML Form If you need a refresher on how to properly make an…
7,038 total views, 2 views today
PHP Switch Statement: Speedy Checking With the use of the switch statement you can check…
6,376 total views, 2 views today
An if/else statement is great if you only need to check for one condition. However,…
5,350 total views, 1 views today
Using these conditional statements can add a new layers of “cool” to your website. Here’s…
7,136 total views, 2 views today
The if statement is necessary for most programming, thus it is important in PHP. Imagine…
6,281 total views, 1 views today
16,213 total views, 1 views today
16,213 total views, 1 views today
Require vs Include When you include a file with the include command and PHP cannot…
5,743 total views, 1 views today
Without understanding much about the details of PHP, you can save yourself a great deal…
39,802 total views, 2 views today
Comments in PHP are similar to comments that are used in HTML. The PHP comment…
80,897 total views, 2 views today
In all programming languages, operators are used to manipulate or perform operations on variables and…
5,742 total views, 2 views today
PHP – String Creation Before you can use a string you have to create it!…
6,928 total views, 2 views today
As you saw in the previous lesson, the PHP command echo is a means of…
5,733 total views, 2 views today
A variable is a means of storing a value, such as text string “Hello World!”…
5,765 total views, 2 views today
When we consider a Java program it can be defined as a collection of objects…
18,671 total views, 2 views today
PHP’s syntax and semantics are similar to most other programming languages (C, Java, Perl) with…
7,080 total views, 2 views today
PHP – What is it? Taken directly from PHP’s home, PHP.net, “PHP is an HTML-embedded…
64,714 total views, 2 views today
A namespace is a section of code that is identified with a specific name. The…
11,010 total views, 2 views today
In the previous two lessons, to use a variable, we were declaring it using either…
10,809 total views, 2 views today
A double-word is a group of two consecutive Words. This means that a double-word combines…
10,849 total views, 3 views today
JavaScript is a sequence of statements to be executed by the browser. JavaScript Statements JavaScript…
9,213 total views, 1 views today
JavaScript is typically used to manipulate HTML elements. Manipulating HTML Elements To access an HTML…
9,088 total views, 1 views today
JavaScript is the world’s most popular programming language. It is the language for HTML, for…
9,194 total views, 1 views today
Padding The padding clears an area around the content (inside the border) of an element….
7,607 total views, 1 views today
Colors are displayed combining RED, GREEN, and BLUE light. Color Values CSS colors are defined…
6,246 total views, 1 views today
CSS Syntax A CSS rule has two main parts: a selector, and one or more…
7,286 total views, 1 views today
HTML Headings HTML headings are defined with the <h1> to <h6> tags. Example <h1>This is…
6,256 total views, 2 views today
First code HTML <!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body>…
5,647 total views, 2 views today