Tagged Questions
The infinite-sequence tag has no wiki summary.
11
votes
2answers
685 views
Whats the point of lazy-seq in clojure?
I am looking through some example Fibonacci sequence clojure code:
(def fibs (lazy-cat [1 2] (map + fibs (rest fibs))))
I generally understand what is going on, but don't get the point of ...
4
votes
4answers
314 views
Consequences of an infinite loop on Google App Engine?
I am not a Google App Engine user. However, I understand you're billed for CPU time and other resources. What are the consequences if you happen to create an infinite loop? Will Google ever terminate ...
2
votes
6answers
236 views
Math.Infinity in ruby, how do i iterate over an infinite sequence
I am trying to solve Project Euler problem #12:
The sequence of triangle numbers is generated by adding the natural
numbers. So the 7th triangle number
would be 1 + 2 + 3 + 4 + 5 + 6 + 7 =
...
1
vote
1answer
72 views
WPF ListBox generate items as user scrolls
I am trying to use a ListBox to display a possibly infinite list of options to a user. Currently, I am simply cutting off the list at an arbitrary point, but I would like to allow the user to scroll ...
1
vote
2answers
107 views
Capture indefinite amount of numbers with Regex?
I want to get captures using regex on a string that could contain an indefinite amount of numbers. My intuition lead me to do "/\.getnumbers (\d+)+\s*/"but that only matched the first number following ...
1
vote
5answers
162 views
Detecting repetition with infinite input
What is the most optimal way to find repetition in a infinite sequence of integers?
i.e. if in the infinite sequence the number '5' appears twice then we will return 'false' the first time and 'true' ...
0
votes
1answer
103 views
infinite sequence in SML
I have to code a function that receives a sequence (finite or infinite) and returns an identical sequence with the only difference that if an exception occurs during the sequence then the function ...
0
votes
3answers
46 views
What are some useful or interesting infinite generators?
What are some clever uses for infinite generators? I've seen lots of seemingly trivial examples like "list all even numbers", but I assume there must be others that have more applicability to ...
0
votes
1answer
60 views
Searching strategy in an infinte list
I am listening to a 3rd party web-service, when the services starts it generates a stream of objects which I am receiving. I have to search for a specific object within given amount of time and do ...
0
votes
3answers
383 views
Generating an infinite sequence in Haskell
I know that infinite sequences are possible in Haskell - however, I'm not entirely sure how to generate one
Given a method
generate::Integer->Integer
which take an integer and produces the next ...