Tagged Questions

19
votes
5answers
385 views

What's exactly happening in infinite nested lists?

It's possible to create an infinite nested list in Python. That's clear and, although not popular and definitely not useful is a known fact. >>> a = [0] >>> a[0] = a >>> a ...
18
votes
4answers
834 views

How to tell if a list is infinite?

Is there a way to tell if a list in Haskell is infinite? The reason is that I don't want to apply functions such as length to infinite lists.
18
votes
3answers
736 views

Proving equality of streams

I have a data type data N a = N a [N a] of rose trees and Applicative instance instance Applicative N where pure a = N a (repeat (pure a)) (N f xs) <*> (N a ys) = N (f a) (zipWith ...
14
votes
4answers
497 views

Left and Right Folding over an Infinite list

I have issues with the following passage from Learn You A Haskell (Great book imo, not dissing it): One big difference is that right folds work on infinite lists, whereas left ones don't! To put ...
6
votes
4answers
1k views

Scala, repeat a finite list infinitely

I want to use Stream class in scala to repeat a given list infinitely. For example the list (1,2,3,4,5) I want to create a stream that gives me (1,2,3,4,5,1,2,3,4,5,1,2,3....) So that I can wrap the ...
4
votes
2answers
116 views

Scalas (a,b).zipped (or Tuple2.zipped) notion using streams/infinite lists

here is what I thought would be a correct and useful definition of fibonacci nums in scala: lazy val fibs:Stream[Int] = 0 #:: 1 #:: (fibs,fibs.tail).zipped.map(_+_) However, I get the following ...
3
votes
2answers
129 views

Excluding computed results from a map of [1..]?

I'm currently working on a program which computes amicable pairs (Project Euler 21). I've already found the solution, however I noticed that a flaw in my program was that it evaluates all of the ...
3
votes
6answers
979 views

In Haskell, how can you sort a list of infinite lists of strings?

So basically, if I have a (finite or infinite) list of (finite or infinite) lists of strings, is it possible to sort the list by length first and then by lexicographic order, excluding duplicates? A ...
2
votes
8answers
652 views

Are infinite lists useful for any real world applications?

I've been using haskell for quite a while now, and I've read most of Real World Haskell and Learn You a Haskell. What I want to know is whether there is a point to a language using lazy evaluation, in ...
1
vote
6answers
250 views

Stuck in a loop ! :o

I'm trying to implement my own List system in Java. the List class file : package RoutingDemo.List; /** * A 2-way Linked-List to store generic elements. * */ public class List { /* ...