Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
1
0 Endorsements
~736 People Reached
Interests
networking
Favorite Tags
java x 3
Member Avatar for hannah shrn j

hello, will someone tell which domain s currently used and worth to do my M.E project in computer science.i confused of it. clarify

Member Avatar for phorce
-1
136
Member Avatar for hannah shrn j

hello , whether doing project in networking is worth ?and it wil help for my carrier?

Member Avatar for Cross213
-1
75
Member Avatar for hannah shrn j

[CODE]import java.io.*; class avlnode { public int data,bf; public avlnode lchild,rchild,parent; } class avl { avlnode root=null; avlnode p=null; avlnode prev=null; public void insert(int ele) { avlnode temp=new avlnode(); temp.data=ele; temp.lchild=null; temp.rchild=null; temp.parent=null; p=new avlnode(); prev=new avlnode(); p=root; if(root==null) { root=temp; } else { while(p!=null) { prev=p; if(p.data>temp.data) { p=p.lchild; …

Member Avatar for JamesCherrill
0
268
Member Avatar for hannah shrn j

[code]class node { public int data; public node LC,RC; public int shortest; } class minleftist { node root = null; public void insert() { int newelt=0; try { System.out.println("Enter the element:"); DataInputStream din=new DataInputStream(System.in); newelt=Integer.parseInt(din.readLine()); } catch(Exception e){} node temp = new node(); temp.data=newelt; temp.LC=temp.RC=null; temp.shortest=1; if(root==null) root=temp; else root=melt(root,temp); …

Member Avatar for JeffGrigg
-1
257