I have designed for Huffman tree convert binary code with shorter bin code. In main if you call a Binary tree.init(q), then the tree would come out with key: frequency and value: bin code. The problem is converting const char* with char*. I've looked at some codes, and here I converted it by using strdup. Sometimes works fine but sometimes doesn't work. so I checked out the parameter for the function. Is there wrong in calling strdup or maybe others?
#pragma once
#include <stdio.h>
#include <queue>
#include <iostream>
#include "pch.h"
#include <string.h>
#include <string>
#define _CRT_SECURE_NO_WARNINGS
//this is a header file
using namespace std;
class Node
{
public:
     
    //key : frequency, value : code
    int f;
    char* code;
    Node* left;
    Node* right;
    int getFrequency()
    {
        return f;
    }
    char* getCode()
    {
        return code;
    }
    void init(int frequency, char* codestring)
    {
        f = frequency;
        code = codestring;
    }
    Node* getLeft() {
        return left;
    }
    Node* getRight()
    {
        return right;
    }
    void setLeft(Node* L)
    {
        left = L;
    }
    void setRight(Node* R)
    {
        right = R;
    }
    void setFrequency(int frequency)
    {
        f = frequency;
    }
    void setCode(char* string)
    {
        code = string;
    }
};
class BinaryTree
{
public:
    typedef priority_queue<int, vector<int>, greater<int>> pq;
    pq q;
    Node* proot;
    int sizeofqueue;
    void init(pq PriorityQueue)
    {
        q = PriorityQueue;
        sizeofqueue = q.size();
        N = 0;
        int comparetimes = q.size() - 1;
        for (int i = 0; i < comparetimes; i++)
        {
            if (i == 0)
            {
                put_first_two_nodes();
            }
            else
            {
                if (proot->getFrequency() <= q.top())
                {
                    put_right_node();
                }
                else if (proot->getFrequency() > q.top())
                {
                    put_left_node();
                }
                q.pop();
            }
        }
    }
    void put_first_two_nodes()
    {
        Node* pleft = new Node();
        (*pleft).setFrequency(q.top());
        (*pleft).setCode("0");
        q.pop();
        Node* pright = new Node();
        (*pright).setFrequency(q.top());
        (*pright).setCode("1");
        put(pleft, pright);
        q.pop();
    }
    void put_right_node()
    {
        Node* pright = new Node();
        pright->setFrequency(q.top());
        pright->setCode("1");
        put(proot, pright);
        appendcode(0);
    }
    void appendcode(int prefix)
    {
        string pre;
        if (prefix == 1) pre = "1";
        else pre = "0";
        Node* targetNode = proot->getRight();
        char* rcode = targetNode->getRight()->getCode();
        char* lcode = targetNode->getLeft()->getCode();
        string lefts = pre;
        string rights = pre;
        lefts.append(lcode);
        rights.append(rcode);
        char* leftstring = strdup(lefts.c_str());
        char* rightstring = strdup(rights.c_str());
        targetNode->getLeft()->setCode(leftstring);
        targetNode->getRight()->setCode(rightstring);
        free(leftstring);
        free(rightstring);
    }
    void put_left_node()
    {
        Node* pleft = new Node();
        pleft->setFrequency(q.top());
        pleft->setCode("0");
        put(pleft, proot);
        appendcode(1);
        
    }
    char* get(int k)
    {
        return getItem(*proot, k);
    }
    char* getItem(Node root, int k)
    {
        //if there's no node
        if (&root == nullptr) return "";
        //if f or root > k, search left sibling
        if (root.getFrequency() > k) return  getItem(*(root.getLeft()), k);
        //else, search right sibling
        else if (root.getFrequency() < k) return getItem(*(root.getRight()), k);
        //get it
        else return root.getCode();
    }
    
    void put(Node* left, Node* right)
    {
        put_item(left,right);
    }
    void put_item(Node* left, Node* right)
    {
        //make new node that has sibling with left and right
        Node* newnode = new Node();
        newnode->setLeft(left);
        newnode->setRight(right);
        //exchange the new node and root without losing data
        Node* temp;
        temp = proot;
        proot = newnode;
        newnode = temp;
        //proot's frequency : left f + right f
        (*proot).setFrequency((*left).getFrequency() + (*right).getFrequency());
        
    }
    void printpost()
    {
        postorder(proot);
    }
    void postorder(Node* root)
    {
        if (root != nullptr)
        {
            if (root->getLeft() != nullptr) postorder(root->getLeft());
            if (root->getRight() != nullptr) postorder(root->getRight());
            printf("%d : %s ",root->getFrequency(), root->getCode());
        }
        
    }
private:
    int N;
    Node root;
};
