Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
3
Downvoting Members
2
3 Commented Posts
0 Endorsements
Ranked #54.9K
Ranked #4K
~3K People Reached
About Me

belive in smart work

Interests
want to do somthing new
Favorite Tags
Member Avatar for jacktb
Member Avatar for sbharathind

public static void nonRecursiveInorder(Node node) { Stack<Node> st=new Stack(); st.push(node); Node temp; while(!st.isEmpty()) { temp=st.peek(); if(temp.left!=null && temp.left.visited==false) st.push(temp.left); else { if(temp.left==null && temp.right!=null && temp.right.visited==false) { System.out.print(" "+temp.value); temp.visited=true; st.pop(); st.push(temp.right); } else { if(temp.left!=null && temp.left.visited==true && temp.right!=null && temp.right.visited==false) { System.out.print(" "+temp.value); temp.visited=true; st.pop(); st.push(temp.right); } else …

Member Avatar for sbharathind
0
207
Member Avatar for coder91

So i have a gridview that contains data is entered in a form from various drop down menus. I am now creating a new field in the form which is a multiline text box. This is to appear in the gridview aswell. However it won't appear for me, is it …

Member Avatar for devinnrock
0
98
Member Avatar for Hendo

Hello all, Okay, I've been beating my head for a couple of days over this one and I'm running out of time. I'm writing an app that reads an XML file, then uses the data in the XML file as variable values. Here's a sample XML file: <!--Test.xml--> <Test> <turn>right</turn> …

Member Avatar for Hendo
0
175