Bash配置文件已损坏:无法打开bash

时间:2015-06-10 06:37:50

标签: macos

我无法在mac终端上打开.bash_profile,因为我错误地设置了错误的路径。有人可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

只需使用以下方法重置路径:

struct node* mir(struct node *root)
{
    if(root)
    {

    struct node * temp;
    mir(root->left);
    mir(root->right);
    temp=root->left;
    root->left=root->right;
    root->right=temp;
}