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 1097599
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:27:29+00:00 2026-05-17T00:27:29+00:00

Hey, im very new to SML and programming alltogether, i want to write a

  • 0

Hey, im very new to SML and programming alltogether, i want to write a function that combine within lists, such that
[x1,x2,x3,x4,…] = [(x1,x2),(x3,x4),…] Any hints or help for me to go in the right direction is highly appreciated.

  • 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. Editorial Team
    Editorial Team
    2026-05-17T00:27:29+00:00Added an answer on May 17, 2026 at 12:27 am

    By looking at the problem it becomes apparent that we will probably want to process the input two items at a time.

    So let’s look at what we want to do with each pair: If x1 and x2 are the items we’re currently looking at, we want to put the pair (x1, x2) into the list we’re creating. If xs is the list of items that come after x1 and x2, we want the pair (x1, x2) to be followed by the result of “combining” xs. So we can write our combine function as:

    fun combineWithin (x1::x2::xs) = (x1, x2)::(combineWithin xs)
    

    However this definition is not yet complete. We’re only looking at the case where xs has at least two items. So we need to ask ourself what we want to do in the other two cases.

    For the empty list it’s easy: The result of combining the empty list, is the empty list.

    For a list with only one item we can either also return the empty list, or raise an error (or possibly pair the one item with itself). In other words: we need to decide whether combineWithin [1,2,3] should return [(1,2)] or [(1,2), (3,3)] or throw an error.

    If we decide we want the former, our function becomes:

    fun combineWithin (x1::x2::xs) = (x1, x2)::(combineWithin xs)
      | combineWithin _ = []
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey I am very new to Web Programming. I have been learning PHP from
Hey. I have a very large array and I want to find the Nth
Hey I am very new to PHP, I come from a design background, but
Hey, I am very new to entity, sql, c#, and asp.net so this might
Hey, I'm very new to Ruby and Rails. I was wondering if I was
Hey I just began working on a new project that requires, tab navigation, and
This is probably a very easy question. Hey I'm a student and relatively new
Hey. I've a very large C# solution, with many projects that are messy in
Hey guys i have a ListActivity... a very simple at that... and it keeps
Hey guys, I am very new to AJAX and and working on a rating

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.