b43f968b6c
- 在应用程序中新增对达梦数据库(DM)的配置和连接支持 - 实现 SetDmDB 函数以配置达梦数据库连接 - 更新数据库操作逻辑,支持达梦特有的 SQL 语法和功能 - 在相关文件中添加达梦数据库的处理逻辑,包括表创建、数据插入和查询 - 更新 go.mod 和 go.sum 文件以引入达梦数据库驱动 - 增强文档,详细说明达梦数据库的配置和使用方法
40 lines
711 B
Go
40 lines
711 B
Go
// Copyright 2013 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !go1.2
|
|
// +build !go1.2
|
|
|
|
package language
|
|
|
|
import "sort"
|
|
|
|
func sortStable(s sort.Interface) {
|
|
ss := stableSort{
|
|
s: s,
|
|
pos: make([]int, s.Len()),
|
|
}
|
|
for i := range ss.pos {
|
|
ss.pos[i] = i
|
|
}
|
|
sort.Sort(&ss)
|
|
}
|
|
|
|
type stableSort struct {
|
|
s sort.Interface
|
|
pos []int
|
|
}
|
|
|
|
func (s *stableSort) Len() int {
|
|
return len(s.pos)
|
|
}
|
|
|
|
func (s *stableSort) Less(i, j int) bool {
|
|
return s.s.Less(i, j) || !s.s.Less(j, i) && s.pos[i] < s.pos[j]
|
|
}
|
|
|
|
func (s *stableSort) Swap(i, j int) {
|
|
s.s.Swap(i, j)
|
|
s.pos[i], s.pos[j] = s.pos[j], s.pos[i]
|
|
}
|