Advertisement
1yes123

ProjectIdeas-Group_A

Oct 14th, 2022
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. List of Project Ideas
  2. 1.Interval Scheduling
  3. Consider the following very simple scheduling problem. You have a resource--
  4. it may be a lecture room, a supercompnter, or an electron microscope--and
  5. many people request to use the resource for periods of time. A request takes
  6. the form: Can I reserve the resource starting at time s, until time f? We will
  7. assume that the resource can be used by at most one person at a time. A
  8. scheduler wants to accept a subset of these requests, rejecting al! others, so
  9. that the accepted requests do not overlap in time. The goal is to maximize the
  10. number of requests accepted
  11.  
  12. 2.Stable Matching
  13. Consider a town with n men and n women seeking to get married to one
  14. another. Each man has a preference list that ranks all the women, and each
  15. woman has a preference list that ranks all the men.
  16. The set of all 2n people is divided into two categories: good people and
  17. bad people. Suppose that for some number k, 1 < k < n - 1, there are k good
  18. men and k good women; thus there are n - k bad men and n - k bad women.
  19. Everyone would rather marry any good person than any bad person.
  20. Formally, each preference list has the property that it ranks each good person
  21. of the opposite gender higher than each bad person of the opposite gender: its
  22. first k entries are the good people (of the opposite gender) in some order, and
  23. its next n - k are the bad people (of the opposite gender) in some order.
  24. Show that in every stable matching, every good man is married to a good
  25. woman.
  26.  
  27. 3.Create a simple web browser
  28. Build a simple IJI that accepts URLs and loads webpages. PyWt will be
  29. helpful here! Can you add a "back" button, bookmarks, and other cool features?
  30.  
  31. 4.Write a notes app
  32. Create an app that helps people write and store notes. Can you think of some interesting
  33. and unique features to add?
  34.  
  35. 5.Build a typing tester.
  36. This should show the user some text, and then challenge them to type itβ€” while
  37. timing them and scoring them on for accuracy.
  38.  
  39. 6.Story generator
  40. The random story generator project aims to generate random stories every time user executes the code. A story is made up of a collection of sentences. We will choose random phrases to build sentences, and hence stories.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement