Skip to navigation Skip to content
Arvi Fox

Personal blog about IT, sport, travel etc.

  • Post a comment in Telegram
  • Main posts
  • Home
  • Blogs I read
  • For software engineers
  • Privacy
  • FAQ interview
  • Home
  • Blogs I read
  • FAQ interview
  • For software engineers
  • Privacy

Tag: algorithms

Posted on August 23, 2015November 28, 2017 by arvifox

Fast inverse square root

wiki

0x5f3759df_habr
cpp_siberia_habr

0x5f3759df


 

Category: IT
Tags: algorithms, theory / math
Posted on May 16, 2015May 16, 2017 by arvifox

yandex algorithm sport

acm icpc 2013

algorithm in bioinformatic

sport programming 2013

sport programming 2014 yandex

Category: IT
Tags: algorithms, sport programming, theory / math
Posted on March 16, 2015August 16, 2017 by arvifox

Connected component (graph theory)

Connected component (graph theory)

pdf

Category: IT
Tags: algorithms, graph theory
Posted on October 15, 2014November 28, 2017 by arvifox

a lot of algorithms

http://e-maxx.ru/algo/

https://www.khanacademy.org/computing/computer-science/algorithms

Category: IT
Tags: algorithms, theory / math
Posted on February 14, 2014November 14, 2016 by arvifox

Hamming weight

Hamming weight

https://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel

[code language=”java”]
int NumberOfSetBits(int i)
{
i = i – ((i >>> 1) & 0x55555555);
i = (i & 0x33333333) + ((i >>> 2) & 0x33333333);
return (((i + (i >>> 4)) & 0x0F0F0F0F) * 0x01010101) >>> 24;
}
[/code]

https://habrahabr.ru/post/276957/

zip

Category: IT
Tags: algorithms, bit

Posts pagination

  • Previous
  • 1
  • …
  • 3
  • 4
  • 5
  • Next
Donate
Donate, please. I need MacBook.
Categories
  • English (112)
  • Games (26)
  • IT (633)
  • Life (11)
Tag cloud
agile AI / ML / BigData / AR / VR / Computer vision algorithms android architecture C# computer graphics / geometry database debug Delphi developing tools/IDE devops dll faq firebase firebird game git google gradle graph theory internet / network interview / job java jetty kmp kotlin management meetup multithreading MySQL news/releases pattern performance PHP rx security / crypto sport programming Testing / QA theory / math tips & tricks UI/UX video / audio windows xml / xpath / json
Meta
  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
Яндекс.Метрика
Follow us
  • twitter
  • bitbucket
  • github
  • goodreads
  • stackoverflow
Recent Posts
  • Start building with Material 3 Expressive
  • Android Studio Meerkat Feature Drop
  • Compose Multiplatform 1.8.0 Released
  • Upgrading your build from Gradle 8.x to the latest
  • gui – cli
Comments
    © Arvi Fox 2025
    PrivacyBuilt with Storefront.