jjl's Contributions
Below are the tutorials, code snippets, and resources jjl has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
File IO with Numeric Data in C++ Tutorials (Last Comment: jjl, Views: 5,119)
Code Snippets
Submitted: October 19, 2009        Views: 2011
Take a bitmap and puts it into a picture box using BilBlt
Submitted: May 4, 2010        Views: 894
Compares array contents and is not dependent on element order. example "test" compared with "tset" would return true
Submitted: October 19, 2009        Views: 795
Grabs Contents from a web page through a activeX webBrowser in MFC.
Submitted: September 30, 2012        Views: 473
A generic linked list implemented with void pointers
Submitted: April 8, 2012        Views: 1735
Evaluates infix and postfix expressions using a stack implementation. It also can convert infix expressions to postfix expressions
Intcat in C++ by jjl
Submitted: October 13, 2012        Views: 410
Concatenates two integers without using strings
Pause Window in C++ by jjl
Submitted: November 1, 2009        Views: 1116
Pauses the DOS window without using system commands
Submitted: July 28, 2011        Views: 1202
Finds a number to a given power using logs and the euler constant.
Submitted: October 19, 2009        Views: 286
searchs a directory and subdirectorys for a specfic extenstion
Submitted: October 28, 2011        Views: 474
Uses the binary search method to search through an integer array recursivly.
Submitted: January 7, 2012        Views: 926
Binary Tree that focuses on recursion and polymorphism
Submitted: July 28, 2011        Views: 1478
Recursivly searches for a number within in a array and returns the index which it is found. If not found, then it returns a -1.
Submitted: December 20, 2011        Views: 1047
Recursive linked list that focuses on polymorphism
Submitted: March 1, 2012        Views: 788
Finds r^p recursively
Submitted: October 20, 2009        Views: 990
Rounds positive and negitive numbers correctly
Submitted: December 20, 2011        Views: 1314
Simple hash table with a integer hash function
String to Char in C++ by jjl
Submitted: November 1, 2009        Views: 1659
Converts a string to a char array
String tokenizer in C++ by jjl
Submitted: October 20, 2009        Views: 1155
Takes a inputed string, and parses it where there is a specific character and pushes it into a vector