Posts

Showing posts from July, 2021

Merge Sort

Thank you Engineers voice bd  

Algorithm Introduction

Image
Algorithm:  is a set of instructions for solving a problem. That means algorithm is a procedure for solving a problem based on conducting a sequence of specified actions. Divide and Conquer Algorithm: How it Works? Breaking the problems into several sub - problems. Solve the problem recursively. Combined the solution. See the following image: Algorithm: Thank you Engineers Voice bd

Tree Traversal

Image
  Tree: Tree is non linear data structure. Rooted at one vertex. Tree contains no cycle. Elements are arranged in layers. A unique path travers from root to any node. Tree Traversals (Inorder, Preorder and Postorder)   Unlikelinear data structures (Array, Linked List, Queues, Stacks, etc) which have only one logical way to traverse them, trees can be traversed in different ways. Following are the generally used ways for traversing trees.   Depth First Traversals:  (a) Inorder (Left, Root, Right) : 4 2 5 1 3  (b) Preorder (Root, Left, Right) : 1 2 4 5 3  (c) Postorder (Left, Right, Root) : 4 5 2 3 1 Inorder Traversal:   Inorder (Left, Root, Right) : Algorithm Inorder(tree)    1. Traverse the left subtree.    2. Visit the root.    3. Traverse the right subtree. Uses of Inorder : In case of binary search trees (BST), Inorder traversal gives nodes in...

Infix to postfix expression

Image
  So, My postfix expression is: 5,6,2,+,*,12,4,/,- For getting  elaborately:  converting an infix arithmetic expression to  its postfix form Thank you
Image
  Hello youth.. Now we are going through in a pandemic situation. I know its very difficult for us to start a new job or your new business. Its time to stay home . If you want to stay safe you have to reduced your unnecessary movement. All of we are very tensed about our upcoming future. In this situation I suggest you to enhance yourself with IT skills. You see our world is changing. There are so many difficulties in our way of life. we will get a shock economically after lockdown. so,  we should prepare ourself for the future and should gain confident. If anybody want to work in a marketplace , he/she must be skilled in IT. Yes, I suggest you to enhance yourself with IT sills. It means, Graphics designing, Responsive web designing, Web development, Software development, etc . Demand for IT skilled employees is growing day by day. So, if you want to do something new you have to be skilled in IT related field. Your way will be very easy if you follow the Engineers Voice BD ...

Technical Education with Engineers Voice BD

Image
  Engineers voice bd is an YouTube channel about CSE, conducted by Fahmida Afroz. Now It is 2021 and all of we are going through in a pandemic situation.  According to Statista.com, the  unemployment  rate in  Bangladesh  in 2019 was 4.19%. Due to Covid -19 and lockdown unemployment problem is increasing day by day. Corona virus , lock down, Shut down make people frustrated. people became jobless. The scope of skill development was already shrunk , this pandemic has made this situation even more difficult . Its really very unpredictable what will happen after lockdown. Unemployment problem will create an un expectable shock for Bangladesh. so, I think people should try to do something new. I wanna say, people  should try to develop their expertise with technical education. Yes, Now its time to focus on technical education . Only technical educational system can solve this problem. Because, In technical educational system a student can learn in b...