This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"python.pythonPath": "C:/Users/giljr/Desktop/django_projects/djangoEnv", | |
"code-runner.executorMap": { | |
"python": "C:/Users/giljr/Desktop/django_projects/djangoEnv", | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"window.zoomLevel": 2, | |
"editor.fontSize": 12, | |
"emmet.triggerExpansionOnTab": true, | |
"files.associations": {"*html":"html"}, | |
"code-runner.ignoreSelection": true, | |
"code-runner.runInTerminal": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
/* This program uses pointer, malloc and structs :) */ | |
int main(int argc, char *argv[]) { | |
/* Declaration of the structure to hold anniversaries data */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
int SequentialSearch(int vec[], int sought); | |
#define VECTORSIZE 10 | |
int main() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define VECTORSIZE 10 | |
void quicksort(int vet[], int p, int u); | |
int partition(int vet[], int p, int u); | |
void swap(int vet[], int i, int j); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
void BubbleSort(int vec[]); | |
#define VECTORSIZE 10 | |
int main() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define VECTORSIZE 10 | |
//Typedef definition | |
typedef struct HashList | |
{ int id; | |
char student[50]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdbool.h> | |
#define VECTORSIZE 10 | |
//Typedef definition | |
typedef struct HashList | |
{ | |
int key; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define MAX_LEN 20 | |
char filename[MAX_LEN] = "musicalbum_v0.csv"; | |
FILE *file; | |
// Prototypes: | |
int menu(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File | Description | |
---|---|---|
__init__.py | This is blank Python script that due to it s special name is treated as a package | |
admin.py | A fantastic machinery Django dashboard for admin interface | |
apps.py | Here you can place app special configurations | |
models.py | Here you store the application's data models | |
views.py | This is where you have functions that handle requests and return responses | |
tests.py | Here you can store test functions to test your code | |
Migrations Folder | This dir stores database specific information as it relates to the models |