Skip to content

berkeka/OMU-ComputerEngineering-Assignments

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OMU-ComputerEngineering-Assignments


This repository contains assignments and projects that I completed during my studies at Ondokuz Mayis University for a Bachelor's degree in Computer Engineering.

Data Structures

  • Week 3

    Create a sorted Linked-List structure:

    • Nodes should have a studentNumber integer, studentName string(array of chars) and a pointer for the next student.
    • Create addStudent, deleteStudent, printStudentList and getNumberOfStudents functions.
  • Week 4

    Create a Queue structure:

    • Nodes should have a studentNumber integer, studentName string(array of chars) and a pointer for the next student.
    • Create queueStudent, dequeueStudent and printQueue functions.
  • Week 5

    Create a Binary search tree structure where the data is an integer:

    • Nodes should have a data integer and two pointers for left and right child tree nodes.
    • Create insertTreeNode, inorderTraversal, postorderTraversal, preorderTraversal, findTreeMaximum and findTreeMinimum functions.

    Create a Binary search tree structure where the data is a string(array of chars):

    • Nodes should have a data string and two pointers for left and right child tree nodes.
    • Create insertTreeNode, inorderTraversali postorderTraversal, preorderTraversal functions.
  • Final Project

    GitHub Logo

    Create a C program that calculates certain routes between two cities for the given image

    • All possible routes
    • Routes with the maximum length
    • Routes that has 3 cities except from the start and finish
    • Calculating number of routes

    System Programming

  • Week 3

    Create a C program that multiplies matrices using multithreading:

About

Ondokuz Mayis University Computer Engineering assignments

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages