View Code? Open in Web Editor
NEW
Go Data Structures and Algorithms is an open source tool for learning and rehearsing data structures and algorithms in Go.
License: Apache License 2.0
go-dsa's Introduction
Data Structures and Algorithms in Go 🚀
Welcome to Data Structures and Algorithms in Go ! 🎉 This project is designed as a dynamic, hands-on resource for learning and practicing data structures and algorithms in the Go programming language.
More than one hundred rehearsal problems, at least six problems for each of the fifteen topics
Executable and comes with 100% test coverage, ensuring correctness and quality
Completely free, community-editable, and continuously evolving
Ability to study and practice in your favorite IDE, editor, or web browser
All topics are discussed in README.md files in the corresponding directory. Each topic includes the following sections:
💡 Implementation : Overview of implementing the data structure or algorithm in Go.
📊 Complexity : Analysis of the time and space complexity of the data structure or algorithm.
🎯 Application : Discuss problems commonly solved using the data structure or algorithm.
📝 Rehearsal : Practice problems with links to tests that provide 100% coverage and example inputs and outputs.
go-dsa's People
go-dsa's Issues
I could be being really stupid. If so please correct me.
I believe that it's impossible to solve product_of_all_other_elements without either using division or going beyond the O(n) requirement.
The solution given in product_of_all_other_elements.go is basically O(2n) which goes against your requirements.
Am I wrong?
Describe the problem
In zero-sum triplets solution it says it's O(1) space complexity is that correct?
Expected behavior
There is memory allocation going on for output. So what would be the actual space complexity?
Describe the problem
In the file array/product_of_all_other_elements.go - Line 9 - You initialised an array of length n.
Doesn't it make space complexity O(N). But you have written it O(1) in Line 3.
https://github.com/spring1843/go-dsa/blame/adc15f7574794bfed14bc10c1689415323fa619c/array/bubble_sort.go#L7
the implementation is comparing the elements in a inefficient way
please see the comparison bellow
func bubbleSort (input []int ) []int {
swapped := true
for swapped {
swapped = false
for i := 1 ; i < len (input ); i ++ {
if input [i - 1 ] > input [i ] {
input [i ], input [i - 1 ] = input [i - 1 ], input [i ]
swapped = true
}
}
}
return input
}
Recommend Projects
A declarative, efficient, and flexible JavaScript library for building user interfaces.
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
An Open Source Machine Learning Framework for Everyone
The Web framework for perfectionists with deadlines.
A PHP framework for web artisans
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Recommend Topics
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
Some thing interesting about web. New door for the world.
A server is a program made to process requests and deliver data to clients.
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
Some thing interesting about visualization, use data art
Some thing interesting about game, make everyone happy.
Recommend Org
We are working to build community through open source technology. NB: members must have two-factor auth.
Open source projects and samples from Microsoft.
Google ❤️ Open Source for everyone.
Alibaba Open Source for everyone
Data-Driven Documents codes.
China tencent open source team.