What is Data Structure and Algorithm in Java. All Topics?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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.

9th Aug 2022, 6:21 PM
PARVEZ ALAM
PARVEZ ALAM - avatar
10 Answers
+ 3
Then what is the problem because you ask for all things related and that is too broad.
10th Aug 2022, 8:50 AM
Chris Coder
Chris Coder - avatar
+ 1
In those links the answers you seek are provided. What part of Data Structure and Algorithm do you not understand?
9th Aug 2022, 9:47 PM
Chris Coder
Chris Coder - avatar
+ 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"); } }
10th Aug 2022, 5:34 AM
PARVEZ ALAM
PARVEZ ALAM - avatar
+ 1
Fake girl want another proof ???
10th Aug 2022, 8:42 AM
PARVEZ ALAM
PARVEZ ALAM - avatar
+ 1
This is something the OP should study passively using a search engine and some PDFs
10th Aug 2022, 11:32 PM
ρү૨œdԌ૨ ×
ρү૨œdԌ૨ × - avatar
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 !!
9th Aug 2022, 6:40 PM
PARVEZ ALAM
PARVEZ ALAM - avatar
0
Fake girl which code ???
10th Aug 2022, 5:01 AM
PARVEZ ALAM
PARVEZ ALAM - avatar
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.
10th Aug 2022, 5:03 AM
PARVEZ ALAM
PARVEZ ALAM - avatar
0
Fake girl ok....
12th Aug 2022, 4:56 AM
PARVEZ ALAM
PARVEZ ALAM - avatar