linked List

linked List
A linked list is a linear data structure where each element is a separate object. Linked list elements are not stored at contiguous location; the elements are linked using pointers. Each node of a list is made up of two items - the data and a reference to the next node....

FSU Technical Festival in Pashchimanchal Pokhara

 FSU Technical Festival in Pashchimanchal Pokhara
 The Free Students’ Union ( FSU), Paschimanchal  Campus is going to organize ‘FSU Technical Festival’ on the 3rd,4th and 5th of Shrawan (19th,20th and 21st of July). The program is aimed for the promotion of the technical knowledge and skills of the students...

Robocup 2018

Robocup 2018
ROBOCUP-2018, is a robot football competition. This season, we will provide a different taste in football while entire world is shouting out loud supporting their favorite teams in World Cup 2018. Robot football is a new flavor for football fans while a significant milestone...

Enqueue and Dequeue Operation

Enqueue and Dequeue Operation
Enqueue Operation Queues maintain two data pointers, front and rear. Therefore, its operations are comparatively difficult to implement than that of stacks. The following steps should be taken to enqueue (insert) data into a queue − Step 1 − Check if the queue is full. Step...

Infix to Prefix Conversion

Infix to Prefix Conversion
While we use infix expressions in our day to day lives. Computers have trouble understanding this format because they need to keep in mind rules of operator precedence and also brackets. Prefix and Postfix expressions are easier for a computer to understand and evaluate....

Infix to Postfix Conversion

Infix to Postfix Conversion
Infix expression:The expression of the form a op b. When an operator is in-between every pair of operands. Postfix expression:The expression of the form a b op. When an operator is followed for every pair of operands. Algorithm 1. Scan the infix expression from left...

Gauss Elimination Method(Algorithm and Source code)

Gauss Elimination Method(Algorithm and Source code)
Gauss Elimination method can be adopted to find the solution of linear simultaneous equations arising in engineering problems. In the method, equations are solved by elimination procedure of the unknowns successively. The method overall reduces the system of linear simultaneous...