Browse Source

fix readme listsort from quest 11

content-update
lee 5 years ago
parent
commit
98cf1e002e
  1. 52
      subjects/listsort.en.md
  2. 69
      subjects/listsort.fr.md

52
subjects/listsort.en.md

@ -13,12 +13,12 @@ Write a function `ListSort` that sorts the linked list by ascending order.
### Expected function and structure ### Expected function and structure
```go ```go
type node struct { type Nodee struct {
data int Data int
next *node Next *Nodee
} }
func ListSort(l *node) *node { func ListSort(l *Nodee) *Nodee {
} }
``` ```
@ -32,53 +32,45 @@ package main
import ( import (
"fmt" "fmt"
piscine ".." piscine ".."
) )
//Prints the list func PrintList(l *piscine.Nodee) {
func PrintList(l *node) {
m := l m := l
for m != nil { for m != nil {
fmt.Print(m.data, " -> ") fmt.Print(m.Data, " -> ")
m = m.next m = m.Next
} }
fmt.Print(nil) fmt.Print(nil)
fmt.Println() fmt.Println()
} }
//insert elements func listPushBack(l *piscine.Nodee, data int) *piscine.Nodee {
func listPushBack(l *node, data int) { n := &piscine.Nodee{Data: data}
n := &node{}
n.data = data
n.next = nil
if l == nil { if l == nil {
l = n return n
return
} }
iterator := l iterator := l
for iterator.next != nil { for iterator.Next != nil {
iterator = iterator.next iterator = iterator.Next
} }
iterator.next = n iterator.Next = n
return l
} }
func main() { func main() {
link := &node{} var link *piscine.Nodee
listPushBack(link, 5) link = listPushBack(link, 5)
listPushBack(link, 4) link = listPushBack(link, 4)
listPushBack(link, 3) link = listPushBack(link, 3)
listPushBack(link, 2) link = listPushBack(link, 2)
listPushBack(link, 1) link = listPushBack(link, 1)
PrintList(piscine.ListSort(link)) PrintList(piscine.ListSort(link))
} }
``` ```
And its output : And its output :
@ -86,6 +78,6 @@ And its output :
```console ```console
student@ubuntu:~/piscine/test$ go build student@ubuntu:~/piscine/test$ go build
student@ubuntu:~/piscine/test$ ./test student@ubuntu:~/piscine/test$ ./test
0 -> 1 -> 2 -> 3 -> 4 -> 5 -> <nil> 1 -> 2 -> 3 -> 4 -> 5 -> <nil>
student@ubuntu:~/piscine/test$ student@ubuntu:~/piscine/test$
``` ```

69
subjects/listsort.fr.md

@ -1,44 +1,83 @@
## countif ## listpushback
### Instructions ### Instructions
Écrire une fonction `CountIf` qui retournes le nombre d'éléments d'un tableau de `string` pour lesquels la fonction `f` retourne `true`. Write a function `ListSort` that sorts the linked list by ascending order.
### Fonction attendue - This time you only will have the `node` structure.
- Try to use recursive.
- Use pointers when ever you can.
### Expected function and structure
```go ```go
func CountIf(f func(string) bool, tab []string) int { type Nodee struct {
Data int
Next *Nodee
}
func ListSort(l *Nodee) *Nodee {
} }
``` ```
### Utilisation ### Usage
Voici un éventuel [programme](TODO-LINK) pour tester votre fonction : Here is a possible [program](TODO-LINK) to test your function :
```go ```go
package main package main
import ( import (
"fmt" "fmt"
piscine ".." piscine ".."
) )
func PrintList(l *piscine.Nodee) {
m := l
for m != nil {
fmt.Print(m.Data, " -> ")
m = m.Next
}
fmt.Print(nil)
fmt.Println()
}
func listPushBack(l *piscine.Nodee, data int) *piscine.Nodee {
n := &piscine.Nodee{Data: data}
if l == nil {
return n
}
iterator := l
for iterator.Next != nil {
iterator = iterator.Next
}
iterator.Next = n
return l
}
func main() { func main() {
tab1 := []string{"Hello", "how", "are", "you"} var link *piscine.Nodee
tab2 := []string{"This","1", "is", "4", "you"}
answer1 := piscine.CountIf(piscine.IsNumeric, tab1) link = listPushBack(link, 5)
answer2 := piscine.CountIf(piscine.IsNumeric, tab2) link = listPushBack(link, 4)
fmt.Println(answer1) link = listPushBack(link, 3)
fmt.Println(answer2) link = listPushBack(link, 2)
link = listPushBack(link, 1)
PrintList(piscine.ListSort(link))
} }
``` ```
Et son résultat : And its output :
```console ```console
student@ubuntu:~/piscine/test$ go build student@ubuntu:~/piscine/test$ go build
student@ubuntu:~/piscine/test$ ./test student@ubuntu:~/piscine/test$ ./test
0 1 -> 2 -> 3 -> 4 -> 5 -> <nil>
2
student@ubuntu:~/piscine/test$ student@ubuntu:~/piscine/test$
``` ```

Loading…
Cancel
Save