Skip to content

Instantly share code, notes, and snippets.

@cihanyakar
Created February 7, 2019 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cihanyakar/bce1247be1de4fce9cc87d457e33bde7 to your computer and use it in GitHub Desktop.
Save cihanyakar/bce1247be1de4fce9cc87d457e33bde7 to your computer and use it in GitHub Desktop.
entropi 1
public static int GerekliBitSayisi<T>(ISet<T> dizi)
{
return (int)Math.Ceiling(Math.Log(dizi.Count, 2));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment