亲宝软件园·资讯

展开

Python 中 Elias Delta 编码 Python 中 Elias Delta 编码详情

海拥 人气:0
想了解Python 中 Elias Delta 编码详情的相关内容吗,海拥在本文为您仔细讲解Python 中 Elias Delta 编码的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Python,中,Elias,Delta,编码,Elias,Delta,编码,下面大家一起来学习吧。

语法:

Elias Delta Encoding(X)= Elias Gamma encoding (1+floor(log2(X)) + Binary representation of X without MSB.

1、分步实施

首先,在为 Elias Delta 编码编写代码之前,我们将实现 Elias delta 编码。

第1步:

示例: 某些值的 Elias Gamma 编码

def EliasGammaEncode(k):
 if (k == 0):
  return '0'
 N = 1 + floor(log(k, 2))
 Unary = (N-1)*'0'+'1'
 return Unary + Binary_Representation_Without_MSB(k)

第2步:

  1. 前缀零仅指定应使用 format() 的哪个参数来填充 {}。
  2. b 指定参数应转换为二进制形式。

示例: 不带 MSB 的二进制表示

def Binary_Representation_Without_MSB(x):
 binary = "{0:b}".format(int(x))
 binary_without_MSB = binary[1:]
 return binary_without_MSB

现在我们要为 Elias Delta Encoding 编写代码

第3步:

示例:某些值的 Elias Delta 编码

def EliasDeltaEncode(x):
 Gamma = EliasGammaEncode(1 + floor(log(k, 2)))
 binary_without_MSB = Binary_Representation_Without_MSB(k)
 return Gamma+binary_without_MSB


k = int(input('Enter a number to encode in Elias Delta: '))
print(EliasDeltaEncode(k))

第4步:

为某些整数值生成 Elias Delta 编码的完整代码

from math import log
from math import floor

def Binary_Representation_Without_MSB(x):
 binary = "{0:b}".format(int(x))
 binary_without_MSB = binary[1:]
 return binary_without_MSB

def EliasGammaEncode(k):
 if (k == 0):
  return '0'
 N = 1 + floor(log(k, 2))
 Unary = (N-1)*'0'+'1'
 return Unary + Binary_Representation_Without_MSB(k)

def EliasDeltaEncode(x):
 Gamma = EliasGammaEncode(1 + floor(log(k, 2)))
 binary_without_MSB = Binary_Representation_Without_MSB(k)
 return Gamma+binary_without_MSB

k = 14
print(EliasDeltaEncode(k))

输出:

00100110

加载全部内容

相关教程
猜你喜欢
用户评论