A binary search is an algorithm to search the position of an element inside a sorted array. Here is a C program that performs binary search on an array using recursion.
A binary search is an algorithm to search the position of an element inside a sorted array. Here is a C program implementation of binary search algorithm.
How to implement Jenkins one at a time hash in VB.NET. Jenkins one at a time hash is a hash function that produces a 4 byte hash value from a multi-byte input.
This article explains installing TypeScript, creating your first program and the basics of building applications using TypeScriptand Visual Studio 2015
A Linked list consists of a set of nodes and each node has some data and a pointer to next node. Here is a C program to insert an element in a linked list
A Linked list consists of a set of nodes and each node has some data and a pointer to next node. Here is a C program to add, remove, count and print elements of a linked list
A simple web app created with Node.js and Express framework to retrieve JSON data from a POST request and insert it into a MongoDB collection.
This web app created with Node.js and Express framework demonstrates how to parse a JSON POST and insert the data in to a MySQL database table.
How to convert MYSQL data to JSON using PHP You may use this in combination with Jquery/AJAX to exchange data with web applications in JSON format
PHP program to read JSON file and parse the data to a nested array using json_decode function