This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit Gamedisplayer; | |
| interface | |
| uses | |
| Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, | |
| Dialogs, StdCtrls, ExtCtrls, Math; | |
| type | |
| TGamedisplay = class(TForm) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit TextToSpeech; | |
| interface | |
| uses | |
| Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, | |
| Dialogs, ExtCtrls, AppEvnts, StdCtrls, ClipBrd, SpeechLib_TLB, ComObj, | |
| AsyncCalls, ComCtrls, shellapi, Menus; | |
| type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit DataUI; | |
| interface | |
| uses | |
| Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, | |
| Dialogs, ExtCtrls, DBCtrls, Grids, DBGrids, DBClient, StdCtrls, DataUnit, DB, | |
| DBTables; | |
| type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unit DataLogic; | |
| interface | |
| uses | |
| SysUtils, Classes, DB, DBClient; | |
| type | |
| Tmm = class(TDataModule) | |
| private |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.math.BigDecimal; | |
| import java.math.BigInteger; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import test.csMM; | |
| /** | |
| * Class to find Hypergeometric Distribution. | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Method sorts a list ascendingly using insertion sort algorithm. | |
| * | |
| * @param <T> | |
| * Non null class, that implements comparable interface. | |
| * @param data | |
| * List of T type elements, to be sorted ascendingly. | |
| * @throws java.lang.NullPointerException | |
| * If any element in the list is 'null'. | |
| * @throws java.lang.UnsupportedOperationException |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <summary> | |
| /// Method sorts a list ascendingly using insertion sort algorithm. | |
| /// </summary> | |
| /// <typeparam name="T"> Non null class, that implements comparable interface. | |
| /// </typeparam> | |
| /// <param name="data">List of T type elements, to be sorted ascendingly.</param> | |
| /// <exception cref="System.NullReferenceException"> | |
| /// If any element in the list is 'null'. (Other then first one) | |
| /// </exception> | |
| /// <exception cref="System.NotSupportedException"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <summary> | |
| /// Method sorts a list ascendingly using insertion sort algorithm. | |
| /// </summary> | |
| /// <typeparam name="T"> Non null class, that implements comparable interface. | |
| /// </typeparam> | |
| /// <param name="data">List of T type elements, to be sorted ascendingly.</param> | |
| /// <exception cref="System.NullReferenceException"> | |
| /// If any element in the list is 'null'. (Other then first one) | |
| /// </exception> | |
| /// <exception cref="System.NotSupportedException"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Method sorts a list ascendingly using merge sort algorithm. | |
| * | |
| * @param <T> | |
| * Non null class, that implements comparable interface. | |
| * @param data | |
| * List of T type elements, to be sorted ascendingly. | |
| * @throws java.lang.NullPointerException | |
| * If any element in the list is 'null'. | |
| * @throws java.lang.UnsupportedOperationException |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <summary> | |
| /// Method sorts a list ascendingly using merge sort algorithm. | |
| /// </summary> | |
| /// <typeparam name="T"> Non null class, that implements comparable interface. | |
| /// </typeparam> | |
| /// <param name="data">List of T type elements, to be sorted ascendingly.</param> | |
| /// <exception cref="System.NullReferenceException"> | |
| /// If any element in the list is 'null'. (Other then first one) | |
| /// </exception> | |
| /// <exception cref="System.NotSupportedException"> |
OlderNewer