Giter Site home page Giter Site logo

container's People

Contributors

hydra13142 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

container's Issues

遍历的问题

想尝试遍历所有元素,代码如下:
package main

import (
"fmt"
"skiplist-master/skiplist"
//"time"
//"math/rand"
)

type Role struct {
Score int64
Name string
}

func NewRole(s int64, n string) (*Role) {
return &Role{Score: s, Name: n}
}

func Print(sp _skiplist.SkipList) {
e := sp.SearchByIndex(0)
for {
if e == nil {
break
}
n, s := e.Key()
fmt.Printf("key:%v, %v, value:%+v\n", n, s, e.Val().(_Role))
if !e.Next() {
break
}
}
}

func main() {
sp := skiplist.New()
var i int64 = 0
//t1 := time.Now().UnixNano()
for ; i < 10; i++ {
r := NewRole(i * 10, fmt.Sprintf("n%v", i))
sp.Insert(r.Score, r.Name, r)
}

fmt.Printf("len:%v\n", sp.Len())
Print(sp)
}
不能遍历全部元素,而且以上代码每次运行的结果都不一样。
求指导,我该如何进行遍历?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.