Maya Sidorova

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
- 2019-2022 Tomsk State University of Control Systems and Radioelectronics - BS in Computer Science
- 2005-2010 Tomsk State University - MA in Linguistics and Translation Studies
Projects



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);
}