ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

564 results

Tom Scott
How Computers Compress Text: Huffman Coding and Huffman Trees

Computers store text (or, at least, English text) as eight bits per character. There are plenty of more efficient ways that could work: ...

6:30
How Computers Compress Text: Huffman Coding and Huffman Trees

1,981,375 views

8 years ago

Geekific
Huffman Coding Algorithm Explained and Implemented in Java | Data Compression | Geekific

Discord Community: https://discord.gg/dK6cB24ATp GitHub Repository: https://github.com/geekific-official/ In this video, we ...

10:01
Huffman Coding Algorithm Explained and Implemented in Java | Data Compression | Geekific

46,277 views

4 years ago

GeeksforGeeks
Huffman Coding | GeeksforGeeks

Find Complete Code at GeeksforGeeks Article: http://www.geeksforgeeks.org/greedy-algorithms-set-3-huffman-coding/ This video ...

8:42
Huffman Coding | GeeksforGeeks

438,729 views

8 years ago

JentGent
these compression algorithms could halve our image file sizes (but we don't use them) #SoMEpi

... it is a helpful introduction Reducible's huffman codes video: https://www.youtube.com/watch?v=B3y0RsVCyrw arithmetic coding ...

18:23
these compression algorithms could halve our image file sizes (but we don't use them) #SoMEpi

345,128 views

1 year ago

Gate Smashers
L-4.3: Huffman Coding Algorithm in Hindi with Example | Greedy Techniques(Algorithm)

Huffman Coding is a technique of compressing data to reduce its size without losing any of the details. It was first developed by ...

12:30
L-4.3: Huffman Coding Algorithm in Hindi with Example | Greedy Techniques(Algorithm)

1,866,956 views

5 years ago

Art of the Problem
The Limit of Compression | Huffman Coding

What is the limit of compression? Huffman codes are introduced in order to demonstrate how entropy is the ultimate limit of ...

4:15
The Limit of Compression | Huffman Coding

38,715 views

11 years ago

Inside code
Huffman coding algorithm - Inside code

Source code: https://gist.github.com/syphh/a764a475009852d0ef03813c8d9355f2 Proof: ...

17:31
Huffman coding algorithm - Inside code

10,873 views

4 years ago

Computerphile
How Huffman Trees Work - Computerphile

How do we derive the most compact codes for a situation? Huffman Trees can help. Professor Brailsford explains how computer ...

11:07
How Huffman Trees Work - Computerphile

258,600 views

12 years ago

Robert Steffens
Top 6 Fehler beim Huffman-Code

In diesem führe ich durch den Prozess der Erstellung einer Huffman-Codierungs-Tabelle basierend auf der Buchstabenhäufigkeit ...

4:47
Top 6 Fehler beim Huffman-Code

1,350 views

1 year ago

Gate Smashers
L-4.4: Huffman Coding Question in Greedy Technique | Imp Question for all competitive exams

The idea of providing these questions is to evaluate GATE aspirants randomly from any topic of full Syllabus. Our aim is to give ...

7:50
L-4.4: Huffman Coding Question in Greedy Technique | Imp Question for all competitive exams

705,009 views

6 years ago

MIT OpenCourseWare
1.2.12 Worked Examples: Huffman Encoding

... Worked Examples: Huffman Encoding License: Creative Commons BY-NC-SA More information at https://ocw.mit.edu/terms ...

6:29
1.2.12 Worked Examples: Huffman Encoding

15,823 views

6 years ago

CSE Guru
Huffman Tree & Codes Example3 | Greedy Tech.| L 126 | Design & Analysis of Algorithm

huffman #huffmantree #huffmancode #encoding #decoding #greedy #greedytech #greedytechnique #techniques ...

13:13
Huffman Tree & Codes Example3 | Greedy Tech.| L 126 | Design & Analysis of Algorithm

13,097 views

1 year ago

GeeksforGeeks
Efficient Huffman Coding for Sorted Input | GeeksforGeeks

Find Complete Code at GeeksforGeeks Article: http://www.geeksforgeeks.org/greedy-algorithms-set-3-huffman-coding-set-2/ ...

10:30
Efficient Huffman Coding for Sorted Input | GeeksforGeeks

19,279 views

8 years ago

Study with Dr. Dafda
Huffman Coding in Digital Image Processing with example & its Implementation in MATLAB ||Compression

Video lecture series on Digital Image Processing, Lecture: 39, Huffman coding in Digital Image Processing with example and its ...

13:52
Huffman Coding in Digital Image Processing with example & its Implementation in MATLAB ||Compression

11,196 views

3 years ago

Mary Elaine Califf
Huffman Code

An introduction to Huffman Code file compression including building the code tree, encoding, and decoding. Timestamps ...

18:12
Huffman Code

2,406 views

4 years ago

CS213.2x
CS213 2x S121 Huffman Coding IIT Bombay

In this particular session, we will look at the Huffman coding basic principle and then later on we shall see how this can be ...

8:50
CS213 2x S121 Huffman Coding IIT Bombay

496 views

4 years ago

Edu Mind Official
Huffman Algorithm | #EDU_MIND_OFFICIAL

This video is uploaded for educational purposes. In this video, many new things are kept in view to elaborate the title in an easy ...

5:34
Huffman Algorithm | #EDU_MIND_OFFICIAL

186 views

1 year ago

CrashCourse
Compression: Crash Course Computer Science #21

Get your first two months of CuriosityStream free by going to http://curiositystream.com/crashcourse and using the promo code ...

12:48
Compression: Crash Course Computer Science #21

577,058 views

8 years ago

IDeserve
Huffman Coding

Huffman Coding Algorithm is a lossless data compression algorithm. In lossless data compression, the original data can be ...

17:41
Huffman Coding

25,276 views

9 years ago

Sofia Lemons
Huffman Coding

Explanation of Huffman Coding for compressing text data.

12:42
Huffman Coding

150 views

5 years ago

CS213.2x
CS213 2x S122 Huffman Coding Program IIT Bombay

In this session, we shall look at the implementation of Huffman Coding. You'll recall that last time we discuss Huffman code as a ...

10:22
CS213 2x S122 Huffman Coding Program IIT Bombay

411 views

4 years ago

Nan Chen
Huffman

Hi everyone , today we are going to take a look at another example of Greedy Algorithm , its name is Huffman Code Algorithm.

11:04
Huffman

34 views

10 years ago

Nailin' it with Nav
Unraveling Data Compression: Fano vs. Huffman

In the digital era, data is generated and consumed on an unprecedented scale. Discover the fascinating journey through two ...

5:23
Unraveling Data Compression: Fano vs. Huffman

92 views

2 years ago

Gate Smashers
L-4.1: Introduction to Greedy Techniques With Example | What is Greedy Techniques

Greedy techniques are one of the most intuitive and powerful problem-solving approaches in algorithms. In this video, Varun sir ...

7:32
L-4.1: Introduction to Greedy Techniques With Example | What is Greedy Techniques

1,271,627 views

5 years ago

itechnica
10. Non Binary Huffman Codes
12:47
10. Non Binary Huffman Codes

21,507 views

8 years ago