Site:
http://oopweb.com/Algorithms/Documents/Sman/VolumeFrames.html |
| How to search a numeric array.
A nice overview about performing a binary search on a numeric
array. (Submitted by Peeter Kirs) |
|
Site:
http://www.smartarrays.com/new/downloads/manual/sortsearch.html |
| Methods on searching and sorting in c++:
this is a good website that shows you different methods on how to search and sort. This site gives you examples in both C++ and Java/C# and the methods used in both. I feel it is good because it not only shows you the different methods, but it shows you how to use them as well. |
|
Site: http://www.developerfusion.com/show/3653/9/ |
| This website provides more detail about each sorting method we may
use, and give us the example about how this sorting method will work. |
|
Site:
msdn.microsoft.com/library/en-us/ vclib/html/_crt_searching_and_sorting.asp |
| msdn library. This is the most useful website that I found. There is not only information on searching and sorting, but also on anything that has to do with using the C++ program. I think that using the information on this web site will help anyone with questions using C++. |
| Provides the MSDN view of searching and sorting:
Good cross reference for .Net |
|
Site:
http://epaperpress.com/sortsearch/ |
| Sorting. This web site includes the explanations of the Shell Sort which is basically sort by insertion. The web site offers several other alternatives with code in C++ and Visual Basic. At any rate, there are many ways to sort with each one having its advantages and disadvantages. So when it comes to make a descision for a sorting algorithm it is definitely better to be aware of all the options. Of course, I will choose the best one that fits best in my application not necessarily the fastest for example. |
| EPP: The site above showed us difference types of sorting. It briefly shows us an example of how to write sort command, including insertion sort, shell sort, quick sort, and comparison. However, it doesn’t go in depth of the definition.
|
|
Site:
http://pluto.ksi.edu/~fthulin/321/Chapter 08 - Searching and Sorting
Arrays.ppt |
| Searching and Sorting Arrays “Power Point” . This is a very good power point presentation in where it is gonna teach you about the different types of searching and sorting methods the C program has. After every concept exaplined, a real program is given.
|
|
Site:
http://www.answers.com/topic/binary-search |
| Binary Searches, and everything you ever wanted to know about them. This site was pretty informative when it came to binary searching, going so far as to provide the code needed to perform a binary search in C and in other languages as well. The site has a basic defination of what a binary search is as well as links to other sites that deal with C and other computer science topics.
|
|
Site:
http://www.ibiblio.org/obp/thinkCSpy/chap17.htm |
| How to think like a computer scientist. This web page describes in detail, linked lists. In addition to it provides helpful diagrams that will step you through the process and the code. Specifically, it describes node classes, list and recursions, how to modify lists and several other helpful processes about linked list that go we beyond what is covered in this class.
|
|
Site:
http://www.cs.wisc.edu/~bobh/367/SORTING.html |
| Searching and Sorting examples. The website gives good examples of what c++ code looks like when running a search. |
|
Site:
http://www.chemie.fu-berlin.de/chemnet/use/info/libc/libc_15.html |
| Searching and Sorting. This web site was full of descriptive information, it provide a full explanation of what an array is and provided an example on what a full c++ program looks like. |
|
Site:
http://www.cprogramming.com/tutorial.html |
| Excellent C programming Tutorials including Searching and Sorting. I believe this is C programming Paradise. I initially intended to look for information concerning only to Searching and Sorting. Well, this site has it all. Tutorials for beginners (learning C), Theory, programming graphics and much much more. A must see. |
|
Site:
http://www.course.com/downloads/computerscience/cpp2/chapter18.cfm
|
| Searching and Sortintg Chapter 18. Website is a small paragraph that overviews a chapter in a book. Gives a description of what chapeter 18 has to offer. Information seems easy to understand |
|