Click here to Skip to main content
15,914,162 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Constant pointer Pin
toxcct7-May-07 1:44
toxcct7-May-07 1:44 
AnswerRe: Constant pointer Pin
Michael Dunn7-May-07 8:45
sitebuilderMichael Dunn7-May-07 8:45 
Questionoverloading new operator Pin
ragavan7-May-07 1:23
ragavan7-May-07 1:23 
AnswerRe: overloading new operator Pin
Cedric Moonen7-May-07 1:26
Cedric Moonen7-May-07 1:26 
GeneralRe: overloading new operator Pin
Hans Dietrich7-May-07 1:40
mentorHans Dietrich7-May-07 1:40 
QuestionRe: overloading new operator Pin
James R. Twine7-May-07 3:26
James R. Twine7-May-07 3:26 
AnswerRe: overloading new operator Pin
Cedric Moonen7-May-07 7:28
Cedric Moonen7-May-07 7:28 
AnswerRe: overloading new operator Pin
toxcct7-May-07 1:42
toxcct7-May-07 1:42 
AnswerRe: overloading new operator Pin
James R. Twine7-May-07 3:12
James R. Twine7-May-07 3:12 
QuestionCListCtrl Pin
study.sourabh7-May-07 0:43
study.sourabh7-May-07 0:43 
AnswerRe: CListCtrl Pin
Hans Dietrich7-May-07 1:31
mentorHans Dietrich7-May-07 1:31 
GeneralRe: CListCtrl Pin
study.sourabh7-May-07 3:03
study.sourabh7-May-07 3:03 
GeneralRe: CListCtrl Pin
Hans Dietrich7-May-07 3:36
mentorHans Dietrich7-May-07 3:36 
GeneralRe: CListCtrl Pin
study.sourabh7-May-07 18:02
study.sourabh7-May-07 18:02 
QuestionNP-complete riddle/algorithm Pin
Yariv6-May-07 23:56
Yariv6-May-07 23:56 
AnswerRe: NP-complete riddle/algorithm Pin
toxcct7-May-07 0:04
toxcct7-May-07 0:04 
GeneralRe: NP-complete riddle/algorithm Pin
Yariv7-May-07 8:47
Yariv7-May-07 8:47 
AnswerRe: NP-complete riddle/algorithm Pin
Hans Dietrich7-May-07 1:36
mentorHans Dietrich7-May-07 1:36 
GeneralRe: NP-complete riddle/algorithm Pin
Yariv7-May-07 8:46
Yariv7-May-07 8:46 
AnswerRe: NP-complete riddle/algorithm Pin
Yariv7-May-07 12:43
Yariv7-May-07 12:43 
Incase someone interested, here is a simple solution. I have no idea why I got stuck from the first place:
<br />
BOOL IsSum(const CUIntArray& Array,UINT Sum) const<br />
{<br />
	for(int i=0;i < Array.GetSize();i++)<br />
	{<br />
		if(Array[i] == Sum)<br />
			return TRUE;<br />
		else if(Array[i] < Sum)<br />
		{<br />
			if(CheckSum(Array,Sum,i,Array[i]))<br />
				return TRUE;<br />
		}<br />
	}<br />
	return FALSE;<br />
}<br />
<br />
BOOL CheckSum(const CUIntArray& Array,UINT Sum,int nIndex,UINT SoFar) const<br />
{<br />
  for(int i=nIndex+1;i < Array.GetSize();i++)<br />
 {<br />
   if((SoFar+Array[i]) == Sum)<br />
     return TRUE;<br />
   else if((SoFar+Array[i])<Sum)<br />
   {<br />
      if(CheckSum(Array,Sum,i,SoFar+Array[i]))<br />
         return TRUE;<br />
   }<br />
 }	<br />
 return FALSE;<br />
}<br />

QuestionScrollBar Presence in ListBox ? Pin
sayed_76-May-07 23:30
sayed_76-May-07 23:30 
AnswerRe: ScrollBar Presence in ListBox ? Pin
prasad_som6-May-07 23:44
prasad_som6-May-07 23:44 
QuestionHow to get PID / Process Name from Task Manager Pin
SNI6-May-07 23:11
SNI6-May-07 23:11 
AnswerRe: How to get PID / Process Name from Task Manager Pin
SNI6-May-07 23:16
SNI6-May-07 23:16 
AnswerRe: How to get PID / Process Name from Task Manager Pin
prasad_som6-May-07 23:24
prasad_som6-May-07 23:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.