top of page
Caută

Caesar Cipher Cryptography Algorithm in C++

Caesar Cipher is one of the earliest encryption methods, apparently used by Julius Caesar. It is simple to use and implement, and even...

Comb Sort Algorithm in C++

The Comb Sort Algorithm is very similar to Bubble Sort. It is used to sort an array, by comparing values. The difference is that Count...

Counting Sort Algorithm in C++

Counting Sort algorithm is used to sort elements of an array, that are placed between a small range. The values can repeat them self. It...

Bucket Sort in C++

The Bucket Sort algorithm is used for sorting arrays that have values equally distributed inside a range. We create a few buckets for...

Bubble Sort Algorithm in C++

Bubble Sort algorithm is the simplest sorting algorithm. It compares each value with the adjacent value. If the second value is smaller...

Ternary Search in C++

The Ternary Search is a divide and conquer algorithm, very similar to binary search. It can find a value in a sorted array, by slitting...

Linear Search in C++

Linear Search is a simple way to search for a value in an array. It looks through the values in the array one by one and compares them to...

Jump Search in C++

Jump Search is an algorithm used to find a value in an ordered array of elements. Its main purpose is to do as few searches as possible....

Interpolation Search in C++

Interpolation Search algorithm is used to search for a value in an ordered, uniformly distributed array of elements. Interpolation Search...

Exponential Search in C++

Exponential search is an algorithm used for finding a value in an array. The array must be ordered. This algorithm is based on the Binary...

Binary Search in C++

The binary search algorithm is widely used in programming. It requires that the array in which we search for the value to be sorted. So,...

Lucky Numbers - C# App

https://gist.github.com/oanaunc/91c399b7d83378d9d19102ec120e9588

Login - C# App

https://gist.github.com/oanaunc/717ed9ac01c0babeeb876de6a6f0b4f8

Contact App - C#

https://gist.github.com/oanaunc/979e2438ab2a7dbc3007392f775bb0c0

News App - Android

This app lets the users select which type of news should be displayed from the menu. https://github.com/oanaunc/NewsApp

bottom of page