avl_errors.cpp
来自「Although there has been a lot of AVL tre」· C++ 代码 · 共 29 行
CPP
29 行
/////////////////////////////////////////////////////////////////////////////
// Name: avl_errors.cpp
// Version: 1.0.0
// Purpose: AVL Library Error Message Definitions
// Author: Wu Yuh Song
// Modified by:
// Created: 07/30/1999
// Copyright: (c) Wu Yuh Song
// Licence: Wu Yuh Song's Library Licence, Version 1
/////////////////////////////////////////////////////////////////////////////
#include "avl_errors.h"
char* AVL_Errors::szErrorMessages[] =
{ {"No information available"},
{"Unknown Error"},
{"Node replaced"},
{"Tree is empty"},
{"Invalid list head node"},
{"Invalid list tail node"},
{"Found nodes with same key value"},
{"Node number is incorrect"},
{"The height of the tree is incorrect"},
{"Can't find the corresponding node"},
{"\0"}
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?