Nicksxs's Blog

What hurts more, the pain of hard work or the pain of regret?

problem

Given an array of integers, find two numbers such that they add up to a specific target number.

The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

阅读全文 »

problem

Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.

阅读全文 »

problem

1
2
3
4
5
6
Clone a graph. Input is a Node pointer. Return the Node pointer of the cloned graph.

A graph is defined below:
struct Node {
vector neighbors;
}
阅读全文 »

1
2
3
4
5
6
7
void CTestDialog::OnBnClickedOk() 
{
CString m_SrcTest;
int nIndex = m_CbTest.GetCurSel();
m_CbTest.GetLBText(nIndex, m_SrcTest);
OnOK();
}

模态对话框弹出确定后,在弹出对话框时新建的类及其变量会存在,但是对于其中的控件
对象无法调用函数,即如果要在主对话框中获得弹出对话框的Combo box选中值的话,需
要在弹出 对话框的确定函数内将其值取出,赋值给弹出对话框的公有变量,这样就可以
在主对话框类得到值。

在工作中碰到的一点C++指针上的一点小问题


在C++中,应该是从C语言就开始了,除了void型指针之外都是需要有分配对应的内存才可以使用,同时mallocfree成对使用,newdelete成对使用,否则造成内存泄漏。

0%