質問

日付のリストが与えられます

12/07/2010
13/07/2010
14/07/2010
15/07/2010
12/08/2010
13/08/2010
14/08/2010
15/08/2010
19/08/2010
20/08/2010
21/08/2010

範囲のリストを作成するための再帰的な疑似コードアルゴリズム(FileMakerカスタム機能に変換できます)へのポインターを探しています。

12/07/2010 to 15/07/2010, 12/08/2010 to 15/08/2010, 19/08/2010 to 20/08/2010

リストはゆっくりと重複されています。私は最初の価値と前進の両方から始めて、最後の価値と逆方向に作業しようとしましたが、私はそれを機能させることができないようです。それらのイライラする日のいずれかを持っています...署名が次のようなものだったらいいでしょう

CollapseDateList( dateList, separator, ellipsis )

:-)

役に立ちましたか?

解決

主なルーチンは次のようになります:

List<String> list  = new ArrayList<String>();

String firstDate   = dateList[0];
String lastDate    = dateList[0];
String currentDate = dateList[0];

for (int i = 1; i < dateList.length(); i++) {
    if (dateDiff(dateList[i], currentDate) == 1) {
        lastDate   = dateList[i];
    } else {
        list.add(firstDate + separator + lastDate);
        firstDate = dateList[i];
        lastDate  = dateList[i];
    }
    currentDate = dateList[i];
}
list.add(firstDate + separator + lastDate);

2つの日付が連続しているかどうかを示す機能があると思います。

他のヒント

これがジョブを行う再帰的なFileMakerコードです。基本的なアプローチは、値内の最終日付(右の単語)からの日付を計算する必要がある場合に、配置を行うことです。そうすれば、次の値がまだ最初の範囲の一部であるかどうかを確認するか、最初の範囲を完了したものとしてマークし、残りの値に焦点を合わせることができます。それが他の誰かを助けることを願っています。

// CollapseDateList( dates, comma, dash)

Let(
  countDates = ValueCount ( dates );

  If (
    countDates < 2 ; dates;  // return the dates we've been given...

    Let(
      [ 
        start_date = GetAsDate( LeftWords( GetValue ( dates ; 1 ); 1 ) );
        date_1 = GetAsDate( RightWords( GetValue ( dates ; 1 ); 1 ) );
        date_2 = GetAsDate( GetValue ( dates ; 2 ) );
        date_3 = GetAsDate( GetValue ( dates ; 3 ) );
        dv_1 = GetAsNumber( date_1 );
        dv_2 = GetAsNumber( date_2 );
        dv_3 = GetAsNumber( date_3 );
        twoFollowsOne = (dv_2 = dv_1 + 1);
        threeFollowsTwo = (dv_3 = dv_2 + 1)
      ];

       // compare dates
      Case(
        // only two dates in list
        countDates = 2;
          if (
            twoFollowsOne;
            start_date & dash & date_2;
            GetValue ( dates ; 1 ) & comma & date_2
          );

        // first three values are sequential
        threeFollowsTwo and twoFollowsOne; 
          CollapseDateList( start_date & dash & date_3 & ¶ & RightValues( dates; countDates - 3 ); comma; dash );

        // first two values are sequential only
        not threeFollowsTwo and twoFollowsOne; 
          start_date & dash & date_2 & comma & CollapseDateList(  RightValues(  dates; countDates - 2 ); comma; dash );

        // first two values are not sequential 
        // default
        GetValue ( dates ; 1 ) & comma & CollapseDateList( RightValues( dates; countDates - 1 ); comma; dash )
      ) 
    )
  )
)
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top