摘要:
#include #include typedef int Item;typedef struct node{ Item m_value; struct node* m_pLeft; struct node* m_pRight;}BinaryTreeNode;int getTree... 阅读全文
摘要:
思路:二分法,分别找出第一个和最后一个k出现的位置。相减 加一#include //获取第一个K的位置int getFirstK (int k,int *numbers,int start,int end){ if(start > end){ return -1; ... 阅读全文