Skip to content

Instantly share code, notes, and snippets.

#include "Person.h"
using namespace BaptisteSchlienger;
Person::Person()
{
;
}
std::ostream& BaptisteSchlienger::operator << (std::ostream &stream, Person const &p)
@Jules-Baratoux
Jules-Baratoux / cse40049-hw1.c
Last active August 29, 2015 14:19
Homework #1
/*
* CSE-40049 - Homework #1
*
* Author: Ray Mitchell
* Date: 5/21/2013
* System: Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz 2.70GHz
* 16.00 GB RAM
* Windows 8 Enterprise (64-bit)
*
* Description: Profiles execution speed of random inserts into an array.
@Jules-Baratoux
Jules-Baratoux / hw2.c
Created April 15, 2015 02:45
Homework #2
init
@Jules-Baratoux
Jules-Baratoux / hw1.cpp
Last active August 29, 2015 14:19
Homework #1 – STL Practice
#include <cstdlib>
#include <cassert>
#include <cctype>
using ::toupper;
#include <string>
using std::string;
#include <sstream>
using std::stringstream;
@Jules-Baratoux
Jules-Baratoux / Queue.cpp
Last active August 29, 2015 14:19
Homework #2 – Queue Container
#include <cstdlib>
using std::size_t;
#include <cassert>
#include <cstring>
using ::memmove;
#include <new>
using std::bad_alloc;
using std::nothrow;
@Jules-Baratoux
Jules-Baratoux / hw3.cpp
Last active August 29, 2015 14:19
Homework #3 – Stream Processing Algorithm
#include <cassert>
#include <cctype>
using ::toupper;
using ::isdigit;
#include <cstring>
using std::strpbrk;
#include <string>
using std::string;
@Jules-Baratoux
Jules-Baratoux / Car.c
Last active August 29, 2015 14:20
Homework #3
#include <stdlib.h>
#include <stdio.h>
#include "sort.h"
#define MAX_STRING_LENGTH 8
typedef struct Car_
{
char make[MAX_STRING_LENGTH];
char model[MAX_STRING_LENGTH];
@Jules-Baratoux
Jules-Baratoux / format.h
Last active August 29, 2015 14:20
Homework #4 – Stacks
#if -0
// ----------------------------------------------------------------------------
// SYNOPSYS
// ----------------------------------------------------------------------------
char* format(const char* format, ...);
int fmtlen(const char* ptr, ...);
// ----------------------------------------------------------------------------
@Jules-Baratoux
Jules-Baratoux / Instructions.txt
Created April 30, 2015 00:25
Homework #3 – OI File Manager
Directory Details - Due April 29th by 11:59 PM PT
Attached Files:
File DirectorySelectionAndReporting.png (74.973 KB)
Create a program that integrates with the OI File Manager to allow a user to select a directory from their Android device's filesystem. Once a directory has been selected the App shall display the details of the selected directory including a list of its contents (this could become long… consider incorporating a ScrollView). Please see the attached mockup diagram (available on the View/Complete Assignment page) for more information and contact me with any questions.
OI File Manager Guidance
=====================
The OI File Manager can be downloaded/installed directly from the Android Marked on devices that support it.
To install the OI File Manager on an emulator image...
@Jules-Baratoux
Jules-Baratoux / hw4.cpp
Created May 8, 2015 01:19
Homework #4 – Minimizing Compile-time Dependencies
init