• 締切済み

huffman符号化のためのアルゴリズム

実はこれは課題なんです、しかし、なかなかできません。だれか教えてもらいませんか。お願いします

みんなの回答

  • Tacosan
  • ベストアンサー率23% (3656/15482)
回答No.1

読めない. どこまでできてどこで困ってる?

Ryusuke1121
質問者

補足

#include <stdio.h> #include <string.h> #include <stdlib.h> struct tnode{ struct tnode *left; struct tnode *parent; int prob; int num; struct tnode *right; struct tnode *next; }*head,*top[10]; struct tnode *talloc(void); struct tnode *inOrder(struct tnode *); int main(void) { int num,prob; struct tnode *head,*t,*old,*tp, head=NULL; while (t=talloc(),scanf("%d/n",&(t->prob)!=EOF)){ t->next=head; head=t; } t=head; while(t!=NULL){ printf("%d/n",&(t->prob)); t=t->next; } } /******************* **木構造**********/ while  今ここまでしかできませn。 線形構造しかできませんでした。

すると、全ての回答が全文表示されます。

関連するQ&A