Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 144381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:14:40+00:00 2026-05-11T08:14:40+00:00

I just had a use case where I needed to split a list into

  • 0

I just had a use case where I needed to split a list into n sublists, so that elements are taken in order from the original list and grouped while the predicate is true for the sublist (when it is false, a new sublist is started). I didn’t find this functionality in the standard library, and I thought it was a good exercise to try to solve it in a functional style (as I’m far from a functional guru).

Below is the code I came up with. But I suspect it can be improved a lot. Can you help me find a better way to code this?

class ListWithSplitter[A](val theList:List[A]) {   private def sublistWhile(list:List[A], pred:(List[A] => Boolean)):(List[A],List[A]) =   {     def combine(okList:List[A], remaining:List[A], pred:(List[A] => Boolean)):(List[A],List[A]) =     {       if(pred(okList ::: remaining.head :: Nil))         combine(okList ::: remaining.head :: Nil, remaining.tail, pred)       else         (okList, remaining)     }      list match {       case Nil => (Nil, Nil)       case x :: Nil => (list, Nil)       case x :: xs => combine(List(x), xs, pred)     }   }    private def combinedSplit(list:List[A], pred:(List[A] => Boolean)):List[List[A]] =   {     val r = sublistWhile(list, pred)     r match {       case (Nil, Nil) => List(Nil)       case (x, Nil) => List(x)       case (x, y) => x :: combinedSplit(y, pred)     }   }    def combinedSplit(pred:(List[A] => Boolean)):List[List[A]] =   {     combinedSplit(theList, pred)   } }  trait ListCombinedSplit {   implicit def list2combSplitter[A](x:List[A]) : ListWithSplitter[A] = new ListWithSplitter(x) }  object ListSplitter extends ListCombinedSplit {    def main(args:Array[String])   {     // sample usage: sum of each sublist is less than 100     val a = List(4, 59, 10, 24, 42, 9, 2, 44, 44, 44, 44)     val b = a combinedSplit { list:List[Int] => ((0 /: list)(_ + _)) < 100 }      b foreach println   } } 

Result of sample is:

List(4, 59, 10, 24) List(42, 9, 2, 44) List(44, 44) List(44) 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T08:14:40+00:00Added an answer on May 11, 2026 at 8:14 am

    Your code has the problem that mere invocations of your predicate make it O(N^2). Also, I think the object oriented stuff is too complicated.

    I came up with:

    scala> def lsplit(x : List[Int], limit : Int) =   (x foldLeft (0, Nil.asInstanceOf[List[List[Int]]])) ((x, y) => x match {     case (v, l::xs) if v+y < limit => (v+y, (y::l)::xs)     case (_, xs) => (y, (y::Nil)::xs)   })._2.reverse.map(x => x.reverse)  lsplit: (List[Int],Int)List[List[Int]]  scala> lsplit(List.range(1,50), 100) res9: List[List[Int]] = List(List(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13), List(14, 15, 16, 17, 18, 19), List(20, 21, 22, 23), List(24, 25, 26), List(27, 28, 29), List(30, 31, 32), List(33, 34), List(35, 36), List(37, 38), List(39, 40), List(41, 42), List(43, 44), List(45, 46), List(47, 48), List(49))  scala> lsplit(List.range(1,50), 122) res10: List[List[Int]] = List(List(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15), List(16, 17, 18, 19, 20, 21), List(22, 23, 24, 25, 26), List(27, 28, 29, 30), List(31, 32, 33), List(34, 35, 36), List(37, 38, 39), List(40, 41), List(42, 43), List(44, 45), List(46, 47), List(48, 49)) 

    This doesn’t allow you to specify arbitrary predicate, but you can make it work for fold-like predicates by changing manipulation with the first elent of the pair in foldLeft.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 119k
  • Answers 119k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Simply let GCC handle the linker invocation. Something like this:… May 11, 2026 at 11:41 pm
  • Editorial Team
    Editorial Team added an answer SELECT CAST(f.DateColumn AS VARCHAR(20)) + ' ' + CAST(f.TimeColumn AS… May 11, 2026 at 11:41 pm
  • Editorial Team
    Editorial Team added an answer You could try using SCL code copied with the NOSOURCE… May 11, 2026 at 11:41 pm

Related Questions

I have a framework that loads a lot of child collections from a non-database
I'm trying to select a random 10% sampling from a small table. I thought
This is a quickly cooked up script, but I am having some difficulty due
I had once a situation where I had to override the event handler in

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.