No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Re: 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. | |
Re: I strongly advice "Absolute C++". Clear grammer and everything you need is in this book. | |
Re: 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 … | |
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 … | |
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. |
The End.