0
What is Data Structure and Algorithm in Java. All Topics??
can anyone explain what is data structure and algorithm in java and whats all the topics inside it to cover up all this topic for Placements.
10 Answers
+ 7
Have you tried to research this via Google and Co.?
https://www.tutorialspoint.com/data_structures_algorithms/index.htm
https://www.javatpoint.com/data-structure-tutorial
https://www.javaguides.net/p/data-structures-and-algorithms-in-java.html?m=1
https://www.mygreatlearning.com/blog/data-structures-using-java/
https://www.geeksforgeeks.org/data-structures/
https://medium.com/javarevisited/top-10-data-structure-and-algorithms-courses-for-java-developers-25161ee2edc0
+ 3
Then what is the problem because you ask for all things related and that is too broad.
+ 1
In those links the answers you seek are provided. What part of Data Structure and Algorithm do you not understand?
+ 1
Fake girl This problem of recursion : TOWER OF HANOI
import java.util.*;
public class Program
{
public static void TowerofHanoi(int n , String src , String hel , String des){
if(n==1){
System.out.println("Transfer Disk "+n+" from "+src+" to "+des);
return;
}
TowerofHanoi(n-1, src , des , hel);
System.out.println("Transfer Disk "+n+" from "+src+" to "+des);
TowerofHanoi(n-1,hel,src,des);
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter No. of Disk:-");
int n = sc.nextInt();
TowerofHanoi(n,"Tower A","Tower B", "Tower C");
System.out.println("PROGRAM BY :- PARVEZ ALAM");
}
}
+ 1
Fake girl want another proof ???
+ 1
This is something the OP should study passively using a search engine and some PDFs
0
Lisa Yeah i tried but i want it in as simple language !! I learn many topics till now too ...but want to grow more knowledge related to it for my placements !!
0
Fake girl which code ???
0
Chris Coder I read all the topics and understand it to .... but i am having problem in solving Problems related to it that's why i want help that how i can prepare this topics for my placements.
0
Fake girl ok....