Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~13.0K People Reached
Favorite Forums

5 Posted Topics

Member Avatar for DearPrudence

The problem is not about sofware or operating system. Because I use both windows and linux. In both operating systems my laptop shut down itself about %40 of charge.I still have warranty. I hope they will accept for repair.

Member Avatar for Lambent
0
2K
Member Avatar for Dave Sinkula

I strongly advice "Absolute C++". Clear grammer and everything you need is in this book.

Member Avatar for shahidali6
11
10K
Member Avatar for imclumsy

Here is your answer. Avl tree is a Balanced Binary Tree. public boolean isBalanced() { boolean balanced = true; isBalanced(root, balanced); return balanced; } private void isBalanced(BinaryNode<T> node, boolean balanced) { if(balanced) { int balanceFactor = getBalanceFactor(node); if(balanceFactor == 1) { // Has children int left = getBalanceFactor(node.left); int right …

Member Avatar for JamesCherrill
0
271
Member Avatar for sabrimev

I get a compiling error in the main fuction 'cout << a.GetVect() ; ' I am not sure whether the problem is in the overloading function or in class. Anyone has any idea why I take this error? you can check the compiled code and errors in http://ideone.com/ODOJik Thanks in …

Member Avatar for sabrimev
0
168
Member Avatar for sabrimev

Anyone has idea to seperate a word in parts for example ( kalemimin -> kalem-i-min ) 'kalem' is str1 , 'i' in str2 and 'min' should be get into str3.

Member Avatar for myk45
0
104

The End.