Computer science and IT assignments Undergraduate

Facility location problem

I need to write a facility location problem program. I have already found the solution.Here is the youutbe linkhttps://www.youtube.com/watch?v=bEZfO1DowOo&app=desktop Here are all the fileshttps://onedrive.live.com/?cid=7e9697bc271b1428&id=7E9697BC271B1428%2116229&authkey=%21APg5pNwhuVf2FQEI just want you to modify and, keep the same logic but change the variable names, gui layout, demand values used, pictures for the cities and anything to make the program look …

Continue Reading
Computer science and IT assignments Undergraduate

Facility location problem

I need to write a facility location problem program. I have already found the solution.Here is the youutbe linkhttps://www.youtube.com/watch?v=bEZfO1DowOo&app=desktop Here are all the fileshttps://onedrive.live.com/?cid=7e9697bc271b1428&id=7E9697BC271B1428%2116229&authkey=%21APg5pNwhuVf2FQEI just want you to modify and, keep the same logic but change the variable names, gui layout, demand values used, pictures for the cities and anything to make the program look …

Continue Reading
Computer science and IT assignments Undergraduate

Golang Mini Rest API

Please write a mini REST API connected to a Go microservice to search movies from http://www.omdbapi.com/ Access credentials : OMDBKey : “???”URL : http://www.omdbapi.com/  * Example url call to search is –> GET http://www.omdbapi.com/?apikey=????=Batman&page=2 Tools/Implementation principles required such as : – gRPC– Clean architecture – Go Kit– API Gateway– Unit tests The API should  :– …

Continue Reading
Computer science and IT assignments Undergraduate

Data Structure 2

As we have seen in class, AVL trees are excellent for search given their height of log2nlog_2{n}log2n or log2n+1log_2{n} + 1log2n+1. Unfortunately, to achieve this efficient search, they have to use rotations during insertions and deletions, and those take time!In this project, you will implement AVL-G trees, a simple modification of AVL Trees that allows …

Continue Reading