-
2.11. Programming Exercises번역/Problem Solving with Algorithms and Data 2017. 10. 28. 14:46반응형
이 문서는 영문으로된 내용을 구글 번역기를 활용하여 번역한 내용입니다.
개인적인 공부 및 추후 다시 볼 수 있도록 하기 위해 개인 블로그에 번역 내용을 옮겨 놓았습니다.
원문과 내용이 다를시 책임지지 않으며, 저작권 문제가 발생시 언제든 삭제 될 수 있습니다.Problem Solving with Algorithms and Data Structures using Python by Bradley N. Miller, David L. Ranum is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.- Devise an experiment to verify that the list index operator is O(1)
- Devise an experiment to verify that get item and set item are O(1) for dictionaries.
- Devise an experiment that compares the performance of the del operator on lists and dictionaries.
- Given a list of numbers in random order, write an algorithm that works in O(nlog(n)) to find the kth smallest number in the list.
- Can you improve the algorithm from the previous problem to be linear? Explain.
반응형'번역 > Problem Solving with Algorithms and Data' 카테고리의 다른 글
2.10. Discussion Questions (0) 2017.10.28 2.9. Key Terms (0) 2017.10.28 2.8. Summary (0) 2017.10.28 2.7. Dictionaries (0) 2017.10.28 2.6. Lists (0) 2017.10.28