daroczig writes "you could write a lot neater code based on diff"...
Here's one way:
split(v,cumsum(diff(c(-Inf,v))!=1))
EDIT (added timings):
Tommy discovered this could be faster by being careful with types; the reason it got faster is that split is faster on integers, and is actually faster still on factors.
Here's Joshua's solution; the result from the cumsum is a numeric because it's being c'd with 1, so it's the slowest.
> system.time({
+ a <- cumsum(c(1,diff(v)!=1))
+ split(v,a)
+ })
user system elapsed
1.839 0.004 1.848
Just cing with 1L so the result is an integer speeds it up considerably.
> system.time({
+ a <- cumsum(c(1L,diff(v)!=1))
+ split(v,a)
+ })
user system elapsed
0.744 0.000 0.746
This is Tommy's solution, for reference; it's also splitting on an integer.
> system.time({
+ a <- cumsum(c(TRUE,diff(v)!=1L))
+ split(v,a)
+ })
user system elapsed
0.742 0.000 0.746
Here's my original solution; it also is splitting on an integer.
> system.time({
+ a <- cumsum(diff(c(-Inf,v))!=1)
+ split(v,a)
+ })
user system elapsed
0.750 0.000 0.754
Here's Joshua's, with the result converted to an integer before the split.
> system.time({
+ a <- cumsum(c(1,diff(v)!=1))
+ a <- as.integer(a)
+ split(v,a)
+ })
user system elapsed
0.736 0.002 0.740
All the versions that split on an integer vector are about the same; it could be even faster if that integer vector was already a factor, as the conversion from integer to factor actually takes about half the time. Here I make it into a factor directly; this is not recommended in general because it depends on the structure of the factor class. It'ss done here for comparison purposes only.
> system.time({
+ a <- cumsum(c(1L,diff(v)!=1))
+ a <- structure(a, class="factor", levels=1L:a[length(a)])
+ split(v,a)
+ })
user system elapsed
0.356 0.000 0.357