Click here to Skip to main content
16,005,149 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionMFC Multiple Splitter for MDI Application Pin
SHWRRMSH15-Feb-12 23:29
SHWRRMSH15-Feb-12 23:29 
GeneralRe: MFC Multiple Splitter for MDI Application Pin
Jochen Arndt16-Feb-12 0:11
professionalJochen Arndt16-Feb-12 0:11 
GeneralRe: MFC Multiple Splitter for MDI Application Pin
SHWRRMSH16-Feb-12 0:16
SHWRRMSH16-Feb-12 0:16 
Questioncall C# function from C++ dll Pin
Paulraj G15-Feb-12 20:15
Paulraj G15-Feb-12 20:15 
AnswerRe: call C# function from C++ dll Pin
Code-o-mat15-Feb-12 21:47
Code-o-mat15-Feb-12 21:47 
Questionhow to find time consumed for sorting a given array[sorted/unsorted] Pin
connect2janu15-Feb-12 17:58
connect2janu15-Feb-12 17:58 
AnswerRe: how to find time consumed for sorting a given array[sorted/unsorted] Pin
Rahul Rajat Singh15-Feb-12 19:50
professionalRahul Rajat Singh15-Feb-12 19:50 
AnswerRe: how to find time consumed for sorting a given array[sorted/unsorted] Pin
Rahul Rajat Singh15-Feb-12 19:55
professionalRahul Rajat Singh15-Feb-12 19:55 
One more thing, i have not done the statistical analysis though but u are using 2 while loops one nested inside other why not simlify it with one while loop, Here is my implementation for the same, hopefully it will help:

<br />
void swap(int a[], int i, int j)<br />
{<br />
	int temp = a[i];<br />
	a[i] = a[j];<br />
	a[j] = temp;<br />
}<br />
<br />
void qsort(int *arr, int first, int last)<br />
{	<br />
	int pivot;<br />
	int left = first;<br />
	int right = last;<br />
<br />
	assert(arr != 0);<br />
	if(left >= right)<br />
	{<br />
		return;<br />
	}<br />
	pivot = left++;<br />
	while(left <= right)<br />
	{<br />
		if(arr[left] < arr[pivot])<br />
		{<br />
			//swap left and pivot<br />
			swap(arr, left, pivot);<br />
			pivot = left;<br />
			++left;<br />
		}<br />
		if(arr[right] > arr[pivot])<br />
		{<br />
			//swap right and pivot<br />
			swap(arr, right, pivot);<br />
			pivot = right;<br />
			--right;<br />
		}<br />
	}<br />
<br />
	qsort(arr, first, pivot - 1);<br />
	qsort(arr, pivot + 1, last);<br />
}<br />

GeneralRe: how to find time consumed for sorting a given array[sorted/unsorted] Pin
connect2janu15-Feb-12 23:07
connect2janu15-Feb-12 23:07 
GeneralRe: how to find time consumed for sorting a given array[sorted/unsorted] Pin
Rahul Rajat Singh15-Feb-12 23:54
professionalRahul Rajat Singh15-Feb-12 23:54 
AnswerRe: how to find time consumed for sorting a given array[sorted/unsorted] Pin
Chuck O'Toole16-Feb-12 4:25
Chuck O'Toole16-Feb-12 4:25 
Generalsegmentation fault??? Pin
connect2janu18-Feb-12 0:12
connect2janu18-Feb-12 0:12 
AnswerRe: segmentation fault??? Pin
Chuck O'Toole18-Feb-12 4:18
Chuck O'Toole18-Feb-12 4:18 
Questionusing SHFileOperationW, how to tell when complete and close dialog box Pin
jkirkerx15-Feb-12 10:36
professionaljkirkerx15-Feb-12 10:36 
QuestionRe: using SHFileOperationW, how to tell when complete and close dialog box Pin
Code-o-mat15-Feb-12 11:48
Code-o-mat15-Feb-12 11:48 
AnswerRe: using SHFileOperationW, how to tell when complete and close dialog box Pin
jkirkerx15-Feb-12 12:25
professionaljkirkerx15-Feb-12 12:25 
GeneralRe: using SHFileOperationW, how to tell when complete and close dialog box Pin
Code-o-mat15-Feb-12 21:41
Code-o-mat15-Feb-12 21:41 
GeneralRe: using SHFileOperationW, how to tell when complete and close dialog box Pin
jkirkerx16-Feb-12 6:22
professionaljkirkerx16-Feb-12 6:22 
GeneralLooking for an open source voice removal algorithm Pin
Yuval Naveh15-Feb-12 5:37
Yuval Naveh15-Feb-12 5:37 
GeneralRe: Looking for an open source voice removal algorithm Pin
Gary Wheeler15-Feb-12 6:02
Gary Wheeler15-Feb-12 6:02 
GeneralRe: Looking for an open source voice removal algorithm Pin
Yuval Naveh15-Feb-12 6:06
Yuval Naveh15-Feb-12 6:06 
GeneralRe: Looking for an open source voice removal algorithm Pin
Gary Wheeler15-Feb-12 6:10
Gary Wheeler15-Feb-12 6:10 
GeneralRe: Looking for an open source voice removal algorithm Pin
Yuval Naveh15-Feb-12 7:41
Yuval Naveh15-Feb-12 7:41 
QuestionHow to create TCP connections between two clients in different LAN? Pin
yu-jian14-Feb-12 14:25
yu-jian14-Feb-12 14:25 
AnswerRe: How to create TCP connections between two clients in different LAN? Pin
Jochen Arndt14-Feb-12 22:25
professionalJochen Arndt14-Feb-12 22:25 

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.