Tagged Questions
The abstract-data-type tag has no wiki summary.
31
votes
6answers
8k views
How to Correctly Use Lists in R?
Brief background: Many (most?) modern programming languages in widespread use have at least a handful of ADTs [abstract data type] in common, in particular, string (a (sequence comprised of ...
11
votes
6answers
818 views
Lists in Haskell : data type or abstract data type?
From what I understand, the list type in Haskell is implemented internally using a linked list. However, the user of the language does not get to see the details of the implementation, nor does he ...
8
votes
3answers
319 views
Best way to implement ad-hoc polymorphism in Haskell?
I have a polymorphic function like:
convert :: (Show a) => a -> String
convert = " [label=" ++ (show a) ++ "]"
But sometimes I want to pass it a Data.Map and do some more fancy key value ...
7
votes
2answers
237 views
OO Interface translation to Haskell
My specific problem is actually not about the general translation of an OO interface to Haskell. This is just the best title I could come up with. Yet, I'm sure that my problem originates from a still ...
7
votes
3answers
897 views
Clojure replacement for ADTs and Pattern Matching?
Whenever in Haskell we need some variant data type, we would use ADTs in conjunction with pattern matching. What do Clojure folks use for such usecases?
5
votes
1answer
133 views
Overriding functions with path-dependent type parameters
Edit: Thanks to Derek pointing out the critical part of the error message, I was able to extract the critical part a bit more and it seems to be about Existential Types. If I do understand ยง3.2.10 ...
5
votes
3answers
124 views
Creating instances of Abstract Data Types that recursively contain each other
Given two date types defined as follows:
data Foo = Foo Bar String
data Bar = Bar Foo String
How can I make foo and bar such that foo is Foo bar "foo" and bar is Bar foo "bar"?
What about when we ...
3
votes
2answers
62 views
Reutilizing same c ADT for other types
So i'm having trouble figuring how to overcome this.
Take for example, i have a red black tree implementation that works with items:
typedef unsigned long int Key;
struct rbt_node{
Item item;
...
3
votes
1answer
173 views
What is this abstract data type called?
I'm writing Haskell, but this could be applied to any OO or functional language with a concept of ADT. I'll give the template in Haskell, ignoring the fact that the arithmetic operators are already ...
3
votes
3answers
225 views
Co- and contravariant types in generic priority queue
I'm trying to implement in Scala a generic data type parameterized on a type T, which should be Ordered[T]. Specifically, it's a persistent version of Sleator & Tarjan's skew heap priority queues. ...
3
votes
5answers
2k views
Why use two stacks to make a queue?
I can see the advantage of using two stacks if an array implementation is used since stacks are more easily implemented using arrays than stacks are.
But if linked-lists are used, what is the ...
2
votes
3answers
71 views
Code Review for Linked List add(i, x) Method
I'm currently trying to brush up on ADT implementations, specifically an implementation for a Linked List (I'm using Java 5 to do this).
I have two questions:
(1) Is this implementation I've written ...
2
votes
1answer
34 views
When to choose a Dictionary ADT
In college we learned the three main abstract data types were Containers (Stacks, Queues, and Tables), Dictionaries, and Priority Queues. There are probably an unlimited number of ways to group ADTs ...
2
votes
7answers
235 views
Is “node” an ADT? If so, what is its interface?
Nodes are useful for implementing ADTs, but is "node" itself an ADT? How does one implement "node"? Wikipedia uses a plain old struct with no methods in its (brief) article on nodes. I googled node to ...
2
votes
5answers
337 views
problems with typedef on C
I writing some ADT on C:
I have two file date.c and date.h
inside date.c I have:
typedef struct Date_t {
int date;
char* month;
int year;
} Date;
inside date.h I have:
typedef Date pDate;
...
2
votes
1answer
145 views
A searchable heap structure
The problem is to access a series of values by two different methods. First, by priority; that is implemented simply enough with a heap. Additionally, it must be possible to "tag" each value with one ...
1
vote
1answer
109 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])
| ...
1
vote
1answer
55 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
99 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
vote
1answer
406 views
Time Complexity for Java ArrayList
I found other entries for this question that dealt with specific methods, but nothing comprehensive. I'd like to verify my own understand of the most often used methods of this data structure:
O(1) - ...
1
vote
2answers
164 views
Time complexity of a Stack ADT implemented using a Linked List
What is the time complexity of the put(x) and get() functions for a Stack abstract data type that is implemented using a LinkedList?
My first thought was they are both O(1). But if get() has to ...
1
vote
2answers
144 views
Can I import a non-abstract type abstractly?
Suppose I have a module that contains a type:
module My where
data L a = Nil | Cons a (L a)
The module exports the concrete definition of My to allow for pattern matching etc.
Is it possible for ...
1
vote
2answers
69 views
Abstracting ActiveRecord Attributes
What is the best way to abstract an ActiveRecord attribute without further normalizing the database?
For example, let's assume a database table named addresses with a column zip_code and a method to ...
1
vote
5answers
193 views
Type Class From Subset Of Recursive Type Class (Or Type From Recursive Type)
How do I create a recursive type class which behaves like another recursive type class but has not as many instances as the "parent" class?
Here is an example:
data Atom = Atom
data (Formula a) ...
1
vote
2answers
506 views
Using Generics with Abstract Data Types in Java
For a CS class I need to solve an assigned problem using three data structures: Queue, PriorityQueue, and Stack. I wanted to write a single solution to the problem using an abstract data structure. I ...
1
vote
3answers
225 views
How do I use Haskell's type system to enforce correctness while still being able to pattern-match?
Let's say that I have an adt representing some kind of tree structure:
data Tree = ANode (Maybe Tree) (Maybe Tree) AValType
| BNode (Maybe Tree) (Maybe Tree) BValType
| CNode ...
1
vote
4answers
165 views
I cannot understand the point of this simple code
I am doing this assignment, and there are some stuff (from start-up materials) that I cannot comprehend.
typedef enum
{
NORTH,
EAST,
SOUTH,
WEST,
NUM_POINTS
} Point;
typedef ...
1
vote
4answers
611 views
Abstract Data Types in Fortran 77 (Fortran-II)?
I'm attempting to work in Fotran 77, and I've found the need for a tree based data structure. Aside from implementing a tree with an array, is there any way to build a tree with pointer nodes to other ...
1
vote
2answers
5k views
N-ary trees in C
Which would be a neat implemenation of a N-ary tree in C language?
Particulary, I want to implement an n-ary tree, not self-ballancing, with an unbound number of children in each node, in which each ...
0
votes
2answers
73 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 ...
0
votes
3answers
207 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 ...
0
votes
0answers
196 views
Doubly circular linked list how to implement? [closed]
I understand the concept of a doubly circular linked list... about how each node points back and forth and the first node's previous pointer points to the last node and the last node's next ptr points ...
0
votes
1answer
44 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 ...
0
votes
2answers
185 views
Is Linked List an ADT or is it a Data Structure, or both?
If I use the standard definition of an Abstract Data Type as a black box that provides some functions to manage a collection of data, a Linked List fits that description:
A container that offers ...
0
votes
1answer
38 views
Container ADT standard operation
If you look at the Container ADT (abstract data type) as a black box, it provides two functions:
1. put(C, x)
2. get(C)
The first function will put the object x into container C. The second will ...
0
votes
1answer
94 views
Transform Parameterized Type (With Inferred Parameter)
I have a data type which carries a 'hidden' (inferred) type and a concrete value. Now I try to implement a function which changes both of these but am unable to make it pass GHC.
My sample code is ...
0
votes
2answers
730 views
Where to get more information on Dictionary ADT and Skip List for Java?
I'm trying to go deep into Dictionary ADT and Skip List for Java. My textbook doesn't cover a lot about this and whatever it has covered is very complicated. Which is the best online site to get more ...
-1
votes
3answers
134 views
Name three strategies for internal data storage when implementing a Stack ADT
This was a question my Data Structures teacher put on our recent test. I immediately thought of a List and an Array but I cannot for the life of me think of a third ADT that could be used as internal ...
-1
votes
3answers
272 views