Mechatronics geek blog

المواضيع الرئيسيه للميكاترونكس

Physical System Modeling , Sensors and Actuators ,Signals and Systems , Computers and Logic Systems AND Software and Data Acquisition

Sunday, May 5, 2019

Data Structure

Data Structure main topics: ---------------------------------- Linked List Stack Queue Tree -------------------------------------------------------------------------------------------------------- Array: is the best data structure in terms of accessing time as the time complexity of it is O(1) the time required to access any element of it is constant. Problem: Memory usage! Linked List:  is the best data structure in terms of memory management but in terms of accessing time is O(N). Problem: Accessing time- Time complexity is O(N)! Types:  ...