Selecting the Right Data Structure

Yiğit Okur
1 min readOct 1, 2020

--

Today’s programming languages have many different data structures. Using these data structures correctly instead of designing them from scratch can speed up our applications. This report will be about reviews and performance comparisons of data structures. Every programming language has accepted data type definitions. The programmer will write his program While examining the problem, creating the program algorithm, the data types of variables and constants to be used in the program determines by considering the definitions. Because the data is in the memory of the data types in the table stored in their properties. The program makes the memory write and read operations done by the operating system through the processor. In other words, during the running of the program, the program communicates with the processor and the operating system, using memory. The type chosen for the data affects and concerns many parts of the computer. Therefore, choosing the appropriate data type is an important part of programming. The programmer’s ability to make the right decision depends on recognizing the structures of the data types.

If you want to learn more about data structures, you can read this post.
https://medium.com/@hyigitokur/data-structures-d240248a2f2d

--

--

No responses yet