X Tutup
The Wayback Machine - https://web.archive.org/web/20201103192706/https://github.com/TheAlgorithms/Java/issues/1535
Skip to content
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

Fenwick (Binary Indexed Tree) #1535

Open
st235 opened this issue Oct 1, 2020 · 3 comments
Open

Fenwick (Binary Indexed Tree) #1535

st235 opened this issue Oct 1, 2020 · 3 comments

Comments

@st235
Copy link

@st235 st235 commented Oct 1, 2020

There are no such data structures as Fenwick tree. Fenwick (or Binary Indexed Tree) is a data structure that can efficiently update elements and calculate prefix sums in a table of numbers.

Read more here: https://en.wikipedia.org/wiki/Fenwick_tree

@st235 st235 mentioned this issue Oct 1, 2020
9 of 11 tasks complete
@Rohanfizz
Copy link

@Rohanfizz Rohanfizz commented Oct 8, 2020

I would like to solve this, can u please assign this to me?
Peace :-)

@st235
Copy link
Author

@st235 st235 commented Oct 8, 2020

@Rohanfizz hi 👋

I have already solved it in this PR - #1536 🙂

@Rohanfizz
Copy link

@Rohanfizz Rohanfizz commented Oct 8, 2020

can you please give me some other issue..I dont know anything in dev in a competetive programmer and i like problem solving, so im having trouble participating in hackoctober fest :'(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
2 participants
You can’t perform that action at this time.
X Tutup