answersLogoWhite

0


Best Answer

Data type can be regarded as data structure because we can define our own data type by using typed function. Data types are the category in which the variable are listed to hold the specific value and data structures are the way in which the values and variables are stored in the memory. The use of a data type called structures allows a collection of values possibly of different types to be treated as a single item. Each data structure is built up from the basic data types of the underlying programming language using the available data structuring facilities, such as

arrays & pointers

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

A data structure is the way you define a certain object in a program language. If you define a data structure for a contact in a contact list, you would have members of that data structure such as name, company, address, phone number, etc. The data structure is defined by what you need the program to keep track of.

An algorithm is a specific way of programming a task to make it work on the data you have. For example, there are many algorithms to sort data in a database of information. An algorithm is a specific way that the programmer writes a program to process the information. Algorithms are unique in the way that the program runs and can be measured by their efficiency in processing the data. The metrics are evaluated by how many computer instructions it takes to calculate the results

A data structure is the identification of how your program doesn't have a bugs, traffic, and errors.

An algorithm is a mathematical way of identifying how does it appears to be in a manner of linear and non-linear way of computation.

on the conclusion:

data structure is the flow of data identified on speed.

and

algorithm is the computation on the equalities and difference.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

Structure is basicly a way of grouping servarl piece of information under a single name while Data structure menas with the orgnizing the data into a way by which it can be processed at any time and also concern with the realtionship of data,

This answer is:
User Avatar

User Avatar

Wiki User

8y ago

A data structure is an abstract description of data organization. (e.g.: a linked list, binary tree) The data structure is useful for organizing the data.

A data type is a description of the data itself. (e.g.: integer, character) The data type is used in implementing a data structure such as a linked list of integers.

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

Data types are forms of data itself, Integer, Boolean, String, etc. This is related to how the 1's and 0's are interpreted for that piece of data. Data structures are arrangements such as linked lists, stacks, queues for arranging the data (usually) for accessibility.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

An array is an aggregate of elements of the same data type. A data structure is an aggregate of elements of different different types.

int a[100]; // an array of 100 integers.

// a data structure:

struct s {

int x; // an integer.

float y; // a float.

char* z; // a pointer.

};

The two can be combined:

s a[100]; // an array of 100 structures of type s.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

What is the difference between a data type and a data structure?"

please send very soon within 1 day its very urgent.

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

Data structures use algorithms for sorting, searching, inserting, removing, and overall manipulation of their respective data.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between a data type and a data structure?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between structure and pointer?

A structure is a collection of primitives or other structures. A pointer is a memory address. Comparison of the two is like comparing bowling balls to cinder blocks. You can say that a structure defines the layout of the data, while a pointer points to data that is a particular structure.


What is the difference between the structure tag and structure variable?

The structure tag is a type. The structure variable is an instance of that type.


What is the difference between data structure and abstract data type?

An Abstract Data Type is an interface that interacts with a data structure. A Data Structure is an implementation of the ADT. for example. If you were going to create a linked list you would create an Interface listing all the methods required by the list. Then in the linked list class you would code how the list uses these methods. Hope this helps :)


Type of data communication?

What is the difference between data communication and telecommunication ?


What is difference between pointer and structures?

pointer data type that carry address:of data type that has no name but both of them must have same data type. structures you can make your own data type: struct name put any data type you wants any functions.


What is the difference between fundamental and derived data types?

fundamental data type makes up the derived data type


What is the difference between array and enum?

Array is collection of data items of same data type.Enum is collection of data items of different data type.


What is the difference between an array and structure?

An array is a collection of related data elements of same type.Structure can have elements of different types.An array is a derived data type.A structure is a programmer-defined data type.A struct can contain multiple data types, whereas an array can not.


Difference between catalog and schema?

A catalog is a set of tables which contains the definitions or descriptions of the database structure and its constraints. For example it could store the structure of each file +Type and Format of each data item stored in the file. A catalog is a type of schema and a schema is what defines a data elements and their interrelationships.


What are the differences between Homogeneous and non homogeneous data structures?

in homogeneous data structure all the elements of same data types known as homogeneous data structure. example:- array while there can b any type of data in non homogeneous data structure. example:- list


What is homogeneous data structure?

collection of dissimilar type of data is called non homogeneous data structure as for example structure .


What is the difference between an array of structures and an array within a structure?

The main differences between an array and a structure are: An Array is a collection of similar data items.An array is derived data type.It behave like a built in data type. An array can be increased or decreased. A structure is a collection of dissimilar data items.It is a user defined data types.It must be declared and defined.A structure element can be added if necessary.