25 Aralık 2014 Perşembe

Binary Search Tree



Yine bir ödev ve yine bir son gün sıkışması yaşadım. Bu sefer ikili arama ağacı uygulaması yapılması istendi. Kodlara GitHub üzerinden ulaşabilirsiniz: Binary Search Tree

// In this homework we are asked to implement Binary Search Tree, it is easy to implement, just delete method is tricky. You can reach the codes via GitHub: Binary Search Tree

20 Aralık 2014 Cumartesi

Expression Evaluator



Bu ödevde gelen infix bir string ifadeyi postfix gösterimine çevirme, postfix notasyonunun değerini bulma, postfix notasyonunu ağaç yapısına çevirme ve ağaç yapısını dolaşarak postfix notasyonunun değerini bulmayı yapmamız istendi. Kodlara github üzerinden ulaşabilirsiniz: ExpressionEvaluator

//In this homework, we are asked to convert infix notation to postfix notation, also we have to evaluate and put it into tree structure. Finally traverse tree by postorder traversal. You can reach the code via github : ExpressionEvaluator