Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Brackets #12

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions src/Homework4/BracketChecker.fs
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
namespace Homework4

module BracketChecker =
type Facing =
| Fore
| Back

type Bracket =
| Round
| Square
| Curly

type Symbol =
| Bracket of Bracket * Facing
| Other

let getSymbolType symbol =
match symbol with
| ')' -> Bracket(Round, Back)
| '(' -> Bracket(Round, Fore)
| ']' -> Bracket(Square, Back)
| '[' -> Bracket(Square, Fore)
| '}' -> Bracket(Curly, Back)
| '{' -> Bracket(Curly, Fore)
| _ -> Other

let check brackets =
let rec checkRec currentBrackets currentStack =
match currentBrackets, currentStack with
| [], [] -> true
| [], _ -> false

| h :: tail, [] ->
match getSymbolType h with
| Other -> checkRec tail []
| Bracket(bracketType, Fore) ->
checkRec tail (bracketType :: currentStack)
| _ -> false

| h :: tail, stackHead :: stackTail ->
match getSymbolType h with
| Other -> checkRec tail currentStack
| Bracket(bracketType, Fore) ->
checkRec tail (bracketType :: currentStack)
| Bracket(bracketType, Back) when bracketType = stackHead ->
checkRec tail stackTail
| _ -> false
Comment on lines +33 to +47

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Здесь можно унифицировать большую часть кода


let charList = brackets |> List.ofSeq
checkRec charList []
1 change: 1 addition & 0 deletions src/Homework4/Homework4.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
</PropertyGroup>

<ItemGroup>
<Compile Include="BracketChecker.fs" />
<Compile Include="Program.fs" />
</ItemGroup>

Expand Down
37 changes: 37 additions & 0 deletions tests/Homeworks.Tests/BracketChecker.fs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
module Homeworks.Tests.BracketChecker

open Expecto
open Homework4.BracketChecker

let getName brackets =
$"test on {brackets}"

let createTest brackets expected =
test (getName brackets) {
let actual = check brackets
Expect.equal actual expected "Results must be the same"
}

let generalTests =
[ createTest
"(()([][[{{(aadf) fdf} fdfa}]] klne)(){ rgqie}{} rgqrkqgie [][[r qiermgiqegi miemrgie{()()(({}))}]])"
true

createTest "" true

createTest "({([])})(2+3)() * ()(){}{kgkwemrgkmqe}{}{}[][qrgqerger][][]" true

createTest "(]" false

createTest
"(()([][[{{(aadf) fdf} fdfa}]] klne)() rgqie}{} rgqrkqgie [][[r qiermgiqegi miemrgie{()()(({}))}]])"
false

createTest
"(()([][[{{(aadf) fdf} fdfa}]] klne)(){ rgqie}{} rgqrkqgie [[[r qiermgiqegi miemrgie{()()(({}))}]])"
false

createTest
"(()([][[{{(aadf) fdf} fdfa}]] klne)(){ rgqie}{} rgqrkqgie [[[r qiermgiqegi miemrgie{())(({}))}]])"
false ]
|> testList "general tests"
2 changes: 2 additions & 0 deletions tests/Homeworks.Tests/Homeworks.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@
<RootNamespace>Homeworks.Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="BracketChecker.fs" />
<Compile Include="Main.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Homework1\Homework1.fsproj" />
<ProjectReference Include="..\..\src\Homework4\Homework4.fsproj" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>
6 changes: 3 additions & 3 deletions tests/Homeworks.Tests/Main.fs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
open Expecto
open Homeworks.Tests

[<Tests>]
let allTests = testList "all Tests" []
let allTests = testList "all Tests" [ BracketChecker.generalTests ]

[<EntryPoint>]
let main argv =
allTests
|> runTestsWithCLIArgs [] argv
allTests |> runTestsWithCLIArgs [] argv