|

Review of Alpha Placement Course by Apna College

They have recently launched a course known as Alpha for the coders who want to pursue coding in the future. The Alpha course started on 2nd August and the Course duration is about 2.5 months and can be accessed for one year. It will help the students to learn Java, data structures, and algorithms. It even teaches them to prepare resumes and prepare for the interviews. They will provide the recorded videos, notes, and practice questions

Kruskal Algorithm of Greedy Algorithm in C/C++/Java/Python

Kruskal Algorithm in Greedy Algorithm in C/C++/Java/Python.It is an Algorithm that is used to generate a minimum spanning tree for a given graph.A Spanning tree is a subset, connected graph G, and all the edges are connected in such a way that we can traverse to any edge from a particular edge with or without intermediates. So, if there are n vertices in a connected graph then the no. of edges that a spanning tree may have is n-1.

Split the Circular Linked List into two halves in C/C++/Java/Python

In the case of an even number of elements in the linked list, we can easily split the list into two halves.Store the mid and last pointers of the circular linked list using the tortoise and hare algorithm. Now, make the second half circular and the first half circular. Set the head (or start ) pointers of the two linked lists.

C Program to Make a Simple Calculator using if/else statements

A simple calculator includes addition, subtraction, multiplication, and division. This calculator programĀ in C helps the user to enter the Operator (+, -, *, or /) and two values. Using those two values and operand, it will perform Arithmetic Operations. You can use other methods also to solve this problem. This is the simplest way one…