Skip to content

Instantly share code, notes, and snippets.

View grantpfeifer's full-sized avatar

Grant Pfeifer grantpfeifer

  • Ohio Northern University
View GitHub Profile
@grantpfeifer
grantpfeifer / createFolders.ps1
Last active March 28, 2023 20:41
Create SubFolders
$numOfFolers = 39
$suffix = "-DOC_NUMBER"
$contentsFolder = "C:\Users\grant.pfeifer\OneDrive - RoviSys-FeneTech\Desktop\test\40-DOC_NUMBER\*"
for ($i=1; $i -le $numOfFolers; $i++){
$filename = '{0:d2}' -f $i
$filename = $filename + $suffix

Keybase proof

I hereby claim:

  • I am grantpfeifer on github.
  • I am grantpfeifer (https://keybase.io/grantpfeifer) on keybase.
  • I have a public key ASDDgLvK0YGzB_jBnMEHaQsShWZojPL_zIzndynIxDImkAo

To claim this, I am signing this object:

/*
This code is used to submit your assignment #4.
You need to implement another version of Bubble sort algorithm that works by swapping the pointers instead of swapping the data between the nodes.
You are not allowed to modify the LinkedList Class, only complete class implementation.
Complete the missing lines, test your code, and then submit your answers.
Methods to be completed:
* sortBySwappingPointers()
*/
#include <iostream>