我正在尝试在 SML 中编写一个函数,该函数接受一个整数列表并输出一个有序整数对的列表。有序对第一个 int 是输入列表中出现的 int,有序对中的第二个 int 是它在输入列表中出现的次数。此外,返回的列表应根据有序对中的第一个 int 升序排列。
例如输入列表[1, 1, 1, 2, 3, 3, 5]
将输出为[(1,3), (2, 1), (3, 2), (5, 1)]
.
到目前为止,我有一个使用的功能foldl
自原始帖子以来更新了代码。
fun turnIntoPairs l = foldl (fn (e, a) => if List.exists (fn (x, _) => x = e) a then x + 1 else a @ [(e, 1)]) [] l;
我在更新列表时遇到了问题,在该列表中找到了已经在列表中的有序对 - 我想在有序对中的第二个 int 中添加一个,而该有序对仍在列表中。
任何帮助将不胜感激!
C:\Program Files (x86)\SMLNJ\\bin\.run\run.x86-win32.exe: Fatal error -- Uncaught exception Error with 0
raised at ../compiler/TopLevel/interact/evalloop.sml:66.19-66.27
[autoloading done]
C:\Users\Localadmin\Desktop\CS 671\Program 3\commonFactors.sml:1.87 Error: unbound variable or constructor: x
C:\Users\Localadmin\Desktop\CS 671\Program 3\commonFactors.sml:1.44-1.110 Error: types of if branches do not agree [literal]
then branch: int
else branch: (''Z * int) list
in expression:
if (List.exists (fn <pat> => <exp>)) a
then <errorvar> + 1
else a @ (e,1) :: nil
[Finished in 0.5s with exit code 1]