An abstract data type (ADT) is a specification for a certain class of data structures that have similar behavior; or for certain data types of one or more programming languages that have similar semantics. An abstract data type is defined indirectly, only by the operations that may be performed on ...

learn more… | top users | synonyms

1
vote
1answer
32 views

Overriding abstract members of abstract classes

I have a base abstract class BasePerson. I have another abstract class BaseStudent and this inherits from BasePerson. Here is the example. public abstract class BasePerson { public string ...
2
votes
4answers
43 views

Inheriting abstract classes with abstract properties

I have base class with abstract properties. I want all inheriting classes to override abstract properties. Example: public class Person { public string Name{get;set;} public string ...
-3
votes
0answers
28 views

Is exposing the item.h functions to the main correct?

As title I have a separate modules for the item manipulation; Is considerate correct to #include those modules inside the main module? The program is a LIFO/FIFO queue implemented as ADT species I
1
vote
1answer
45 views

Declaring the various typedefs in a stack ADT

Here's my problem: I need to implement a FIFO/LIFO list stack as ADT species 1. My program is modular and it have an item.h module: #ifndef ITEM_H_INCLUDED #define ITEM_H_INCLUDED ...
1
vote
1answer
78 views

Ada beginner Stack program

Basically, I have 2 files ( .adb and .ads). I am totally new to Ada and also how to compile 2 files. The program is of a basic stack implementation. I got this compile error when I compiled the .adb ...
0
votes
0answers
28 views

Definition of an abstract DATA type

Can we use "if then else" in algebraic specification? for example i want to use this operation existe : List X elem -> BOOL and i have 2 Constructor - newSet : -> List - Insert ...
0
votes
1answer
102 views

Abstract data types

I am trying to understand abstract data types. In the code below I am supposed to write a function for an abstract data type. createMatrix takes in a tuple of the number of x rows and y columns and ...
2
votes
2answers
127 views

Tree traversal - starting at leaves with only parent pointers?

Is it conceptually possible to have a tree where you traverse it by starting at a given leaf node (rather than the root node) and use parent pointers to get to the root? I ask this since I saw ...
3
votes
2answers
123 views

Sorting 1,000,000 Objects (not by Key) - Java

I have c.1,000,000 objects that need to be stored in some form of data structure. They must be unique by a key (ID) - but sorted according to their date. I'm therefore trying to think of a best way of ...
1
vote
1answer
151 views

How to understand ADT (abstract data type algebra)?

I'm taking a CS course but frankly I've no idea what the lecturer is talking about in regards to abstract data type algebra. It's not something I've readily been able to find a solution for on the web ...
0
votes
0answers
94 views

Creating a get method in an ADT List in a Java array

So i've been attempting to make a set of ADT List methods for a Java array. I think<-- i have most everything working, except for my get method. It's been several years since i've coded anything in ...
-4
votes
1answer
95 views

When is something an Abstract Data Type (ADT) [closed]

Take a stack for, example. In Java, Stack extends Vector that then extends another class that extends another class again. My question is: is a class still an ADT no matter how many layers down it ...
1
vote
3answers
190 views

Nested/Sub data types in haskell

So what would be nice is if you could do something like the following (not necessarily with this format, just the general idea): data Sub = SubA | SubB data Super = Sub | SuperB isSub :: Super -> ...
0
votes
2answers
134 views

Hash map and ordered traversal

I am to implement from scratch in C++ a hash map as a full featured abstract data type. Especially, I am to provide an iterator for this data container that would be able to traverse all of the ...
-2
votes
3answers
72 views

C Data Type Creation

So I'm trying to learn C and I understand that it doesn't have classes. However, I have only been doing c++ programming and to create an object of a special type, let's say car, I would have to make a ...
0
votes
1answer
56 views

How to examine items in a “set” without a cons operator

This is one example of code that I would imagine work work fine in a set data type implemented as a list: fun newSet() = nilset; fun isMember (k, x::xs) = if k = x then true else isMember (k, xs) ...
0
votes
1answer
112 views

Recursive Data types in sml

Is there a way define a datatype for whole numbers. i.e. 0,1,2,... not zero, one ,... individually. I want to define the set of whole numbers. bu using 0, n,n+1 with recursion. I tried something like ...
-1
votes
1answer
80 views

Creating a database using a “Two Layer LinkedLists” [closed]

Trying to setup a program using ADTs for a college course that sorts out Storm Objects using a multi-layer LinkedList. Here is what I need to do. Use a two-level linked list to organize the ...
0
votes
2answers
53 views

Moving a value from a queue to a stack [closed]

If I want to move a value from a queue to a stack (value should no longer be in the queue, just in the stack), do I need to dequeue it before pushing it to the stack, or will pushing it to the stack ...
0
votes
1answer
128 views

Design of Datatypes: implicit or explicit State

I often encounter a problem in designing datatypes while handling some internal state. Assuming I have the following definition: data Action a b c = Action { on :: a -> (c, b); off :: b -> a ...
2
votes
1answer
83 views

Is it possible to emulate mixed abstract/deferred and regular procedures in Fortran 2003?

When I try to mix both regular procedures and deferred procedures in one abstract type, gfortran balks at any invocation of the regular procedures: " Error: Base object for type-bound procedure call ...
3
votes
1answer
295 views

Java partially ordered Collection<E>

I am looking for a Java implementation of a data structure which holds a collection of elements for which a partial ordering is defined, and which allows one to iterate over those elements in some ...
2
votes
2answers
1k views

Are there advantages to using the CUDA vector types?

CUDA provides built-in vector data types like uint2, uint4 and so on. Are there any advantages to using these data types? Let's assume that I have a tuple which consists of two values, A and B. One ...
0
votes
2answers
98 views

objective-c small class overhead

I was writing a class file and I included a CGPoint as an Ivar. This got me wondering about the overhead associated with smaller objective-c data structures. Is the memory footprint of something ...
-1
votes
3answers
281 views

boolean postfix notation

I have to write an ADT character stack to handle postfix notation for boolean values. This is an example of one of the postfix notations. T T && F || ! ( this will be the input text) I know ...
3
votes
4answers
975 views

C++ Inheritance in Separate Files Using #include and Inclusion Guards

I am new to Stack Overflow and am teaching myself C++, but am still quite a beginner. After completing a nice chunk of the book I am using (which may be considered out dated and/or not a great book) I ...
0
votes
1answer
153 views

PHP Binary Tree Insert Issue

I'm playing around with writing a binary tree. Currently it's not going to be complete, or have each of it's levels full. I'm just trying to get the insert to work in it's most basic form (I'll mess ...
0
votes
1answer
188 views

Trying to use abstract data types - How to call the methods through inheritence

I am trying to test my abstract class but I am running into problems when I call the methods from the test class. It has been a while since I used Java and I have not used abstract classes before. Any ...
8
votes
3answers
202 views

Implementing different yet similar structure/function sets without copy-paste

I'm implementing a set of common yet not so trivial (or error-prone) data structures for C (here) and just came with an idea that got me thinking. The question in short is, what is the best way to ...
0
votes
2answers
265 views

creating an ADT using its function - C

So, I'm trying to write a function which return a pointer to an ADT, in the heep. the problem is that I can't manipulate it after the memory allocation. here is a simplified code typedef struct ...
1
vote
2answers
175 views

Java Collection - Concrete data structure under the hood for dictionary/tree based abstract data structure

My question is about what are the fundamental/concrete data structure (like array) used in implementing abstract data structure implementations like variations maps/trees? I'm looking for what's used ...
3
votes
4answers
221 views

How to define an abstract data type like “data MyMath = MyNum Num”?

I want to define a new abstract data type which is either a general Number or a Division construct. How would I do that in Haskell? My first approach was: data MyMath = MyNum Num | Div ...
0
votes
1answer
139 views

Linked List head reference assignment to link list object in Java

the following splitter method is designed to return a IntLinkedBag array of two separate linked lists. It accomplishes this by calling listSplitLessGreater method and passes the head reference of a ...
1
vote
2answers
186 views

How to call constructor for leaves of a tree algebraic data type in Scala?

I'm creating some basic abstract data types and algorithms to brush up on my CS fundamentals, and learning Scala along the way. I'm running into trouble with my BinarySearchTree data type, which is ...
0
votes
2answers
439 views

Function pointer confusion

I'm trying to use function pointers and Abstract data types in c. This is my first time using it and I'm really confused. Anyways when I tried to compile this code I gave me an error. The first time I ...
-1
votes
1answer
239 views

Can I generate Postfix Notation without using Double Linked List and Stack data structure

my question is about "postfix" notation. In my project instructor has wanted from me to calculate postfix notations. Programming style is free but programming language is Java. I will write codes in ...
0
votes
1answer
434 views

ADT implementation in C++ of integer list

I need to do a home assignment in VC++, which uses ADT to do several operations on an integer list. For now, we're not allowed to use classes, so I need to use struct. I don't quite understand how ...
1
vote
1answer
364 views

SML: Creating Abstract Data Types

I'm writing a simple Abstract Data Type for fractions and I cant even get the constructor to work, I'm just very lost on SML syntax. signature fracs = sig type fraction exception zero_denominator ...
0
votes
1answer
70 views

Does 'Priority Queue' data structure fits to SET Theory?

Does the Priority Queue data structure follow the set theory in terms of the uniqueness of its elements in its content? I mean you cannot put a duplicate of an entity in the priority queue. -whereas ...
3
votes
2answers
145 views

What exact operations does an enhanced for-loop perform on a linked-list for each iteration?

for (String msg : messages) { System.out.println(msg); } Say that messages is a properly initialized circular, doubly linked list that has no head or end pointer (reference). That is, it just ...
8
votes
2answers
769 views

When should I typedef struct vs. pointer to struct?

I'm not an expert on lower-level non-object-oriented programming languages, and I'm in the middle of writing some C code for a project at work. I'm trying to create some decent abstract data types to ...
1
vote
3answers
407 views

Stack abstract data type in C

Can you please tell me what I did wrong? I'm getting SIGSEGV (Segmentation fault) error. Is single linked list the best way to implement a stack abstract data type? I'm trying not to use global ...
0
votes
2answers
62 views

Choosing a Mysql Datatype

For data sets like: ecb1bcf6-c7a6-572e-a44d-d6e3298486b7 What's the best way (as far as datatypes) to store this in mysql? This value will be READ-ONLY, NOT updated, ever.
4
votes
6answers
112 views

Functions or methods?

If I'm writing abstract data types in C, are the functions written to perform actions on these data types and exposed in the interface (.h files) called functions, methods, or something yet completely ...
0
votes
2answers
704 views

Finding max and min nodes possible in a tree of depth k and with a branching factor of n

I have a tree of depth k and branching factor of n. I've been trying to find a general formula for: Maximum number of nodes possible in this tree Minimum number of nodes possible in this tree Any ...
1
vote
3answers
4k views

C++. Error: void is not a pointer-to-object type.

struct arguments { int a, b, c; arguments(): a(3), b(6), c(9) {} }; class test_class { public: void *member_func(void *args) { arguments vars = (arguments ...
2
votes
1answer
304 views

Trying to parse recursive JSON, am I on the right track?

This problem is related to this question. Here is the data type I wish to make from the JSON: data ProdObject = MKSpair (Text, Text) | MKSLpair (Text, [Text]) | ...
0
votes
1answer
91 views

Combining two seperate ADTs into one

Hey guys I'm trying to get started on my CS assignment (second year C paper). In this course we have created a Binary Search Tree ADT and also a Red Black Tree ADT. We have to combine them into one ...
2
votes
1answer
157 views

ADT Specifications Modification for Stacks

I did this on my own i just want confirmation that it is right. I am supposed to Modify ADT Specifications for Stacks to account for operations suck as count (returning the number of elements in a ...
1
vote
2answers
277 views

How to mix Generics and Abstract Types in Scala?

I want to do the following, but "Iterable[BASE]" won't compile. What is the right way to do it, while keeping BASE an abstract type? trait Base trait Meta { type BASE <: Base } trait EnumBase ...

1 2