-
Notifications
You must be signed in to change notification settings - Fork 37
Added simple Scala examples #21
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
Open
ZheniaTrochun
wants to merge
2
commits into
HowProgrammingWorks:master
Choose a base branch
from
ZheniaTrochun:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.idea/ | ||
target/ | ||
*.iml | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import doubleLinked.{DNil, DoubleLinked} | ||
import singleLinked.{SNil, SingleLinked} | ||
|
||
object Example { | ||
def main(args: Array[String]): Unit = { | ||
val list: SingleLinked[Int] = 1 :: 2 :: 3 :: SNil | ||
|
||
list.foreach(item => print(s"$item\t")) | ||
println() | ||
|
||
list.map(_ + 1).foreach(item => print(s"$item\t")) | ||
println() | ||
|
||
list.flatMap(item => item :: item :: singleLinked.SNil).foreach(item => print(s"$item\t")) | ||
println() | ||
|
||
|
||
val list2: DoubleLinked[Int] = 1 :: 2 :: 3 :: DNil | ||
|
||
list2.foreach(item => print(s"$item\t")) | ||
println() | ||
|
||
list2.map(_ + 1).foreach(item => print(s"$item\t")) | ||
println() | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package doubleLinked | ||
|
||
/** | ||
* In case of double linked list we have to ignore some principles of functional programming | ||
* and we have to make some fields of Node class mutable | ||
* In other case we will have to recreate all list after any change | ||
*/ | ||
|
||
sealed trait DoubleLinked[+A] { | ||
def ::[B >: A](x: B): DoubleLinked[B] = { | ||
DoubleLinked.append(x, this) | ||
} | ||
|
||
def foreach[B >: A](f: B => Unit): Unit = { | ||
DoubleLinked.foreach(this)(f) | ||
} | ||
|
||
def map[B](f: A => B): DoubleLinked[B] = { | ||
DoubleLinked.map(this, DNil)(f) | ||
} | ||
} | ||
|
||
|
||
case object DNil extends DoubleLinked[Nothing] | ||
class Node[A](var prev: DoubleLinked[A], val value: A, var next: DoubleLinked[A]) extends DoubleLinked[A] | ||
|
||
|
||
object DoubleLinked { | ||
def empty[A]: DoubleLinked[A] = DNil | ||
|
||
def apply[A](values: A*): DoubleLinked[A] = values.foldLeft(DoubleLinked.empty[A])((list, item) => item :: list) | ||
|
||
def append[A](x: A, list: DoubleLinked[A]): DoubleLinked[A] = { | ||
val node = new Node(DNil, x, list) | ||
list match { | ||
case DNil => DNil | ||
case l: Node[A] => | ||
l.prev = node | ||
} | ||
|
||
node | ||
} | ||
|
||
def foreach[A](list: DoubleLinked[A])(f: A => Unit): Unit = { | ||
list match { | ||
case DNil => | ||
case l: Node[A] => | ||
f(l.value) | ||
l.next.foreach(f) | ||
} | ||
} | ||
|
||
def map[A, B](list: DoubleLinked[A], prev: DoubleLinked[B])(f: A => B): DoubleLinked[B] = { | ||
list match { | ||
case DNil => DNil | ||
case l: Node[A] => | ||
new Node(prev, f(l.value), map(l.next, prev)(f)) | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
package singleLinked | ||
|
||
|
||
sealed trait SingleLinked[+A] { | ||
def ::[B >: A](x: B): SingleLinked[B] = { | ||
SingleLinked.::(x, this) | ||
} | ||
|
||
def foreach[B >: A](f: B => Unit): Unit = { | ||
SingleLinked.foreach(this)(f) | ||
} | ||
|
||
def map[B](f: A => B): SingleLinked[B] = { | ||
SingleLinked.map(this)(f) | ||
} | ||
|
||
def flatMap[B](f: A => SingleLinked[B]): SingleLinked[B] = { | ||
SingleLinked.flatMap(this)(f) | ||
} | ||
} | ||
|
||
|
||
case object SNil extends SingleLinked[Nothing] | ||
case class Node[+A](value: A, next: SingleLinked[A]) extends SingleLinked[A] | ||
|
||
|
||
object SingleLinked { | ||
def empty[A]: SingleLinked[A] = SNil | ||
|
||
def apply[A](values: A*): SingleLinked[A] = values.foldLeft(SingleLinked.empty[A])((list, item) => item :: list) | ||
|
||
def ::[A](x: A, list: SingleLinked[A]): SingleLinked[A] = Node(x, list) | ||
|
||
def foreach[A](list: SingleLinked[A])(f: A => Unit): Unit = { | ||
list match { | ||
case SNil => | ||
case Node(x, next) => | ||
f(x) | ||
next.foreach(f) | ||
} | ||
} | ||
|
||
def map[A, B](list: SingleLinked[A])(f: A => B): SingleLinked[B] = { | ||
list match { | ||
case SNil => SNil | ||
case Node(x, next) => Node(f(x), next.map(f)) | ||
} | ||
} | ||
|
||
def merge[A](list1: SingleLinked[A], list2: SingleLinked[A]): SingleLinked[A] = { | ||
list1 match { | ||
case SNil => list2 | ||
case Node(x, next) => Node(x, merge(next, list2)) | ||
} | ||
} | ||
|
||
def flatMap[A, B](list: SingleLinked[A])(f: A => SingleLinked[B]): SingleLinked[B] = { | ||
list match { | ||
case SNil => SNil | ||
case Node(x, next) => merge(f(x), next.flatMap(f)) | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add empty line at EOF
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For all files