Maya Sidorova

A photo of a woman with a cat

Web-developer based in Shanghai

Email: mayasidorova@yahoo.com

Skills

  • HTMl/CSS
  • Javascript
  • Python
  • Git
  • C/C++

Languages

  • Russian - Native
  • English - fluent
  • Chinese - fluent

Education

Projects

Screenshot of Online Zoo project
Online Zoo
Screenshot of Virtual Piano web app
Virtual Piano
Screenshot of Photo Editor web app
Photo Editor

Code Example

          
          node * insert_node(node *tree, node *new_node) { // function inserting a node into AVL Tree
            if (!tree) return new_node;
            if (new_node->getKey() > tree->getKey()){
                tree->setRight(insert_node(tree->getRight(), new_node));
            } else {
                    tree->setLeft(insert_node(tree->getLeft(), new_node));
                }
            return balance(tree);
        }