├── BE-Computer-2015-Course.pdf ├── LICENSE ├── LP1 ├── AI LAB │ ├── Alpha Beta Pruning │ │ └── pruning.ipynb │ ├── AlphaBetaP_JAVA │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── Screenshot from 2018-10-25 20-24-46.png │ │ └── src │ │ │ ├── AlphaBeta.java │ │ │ └── GUI.java │ ├── B12_NQUEENS │ │ ├── CPP │ │ │ ├── b12_backtracking.cpp │ │ │ └── b12_branch_bound.cpp │ │ ├── backtracking.ipynb │ │ └── branchandbound.ipynb │ ├── EightPuzzleProblem │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ └── src │ │ │ ├── AStarAlgorithm.java │ │ │ ├── CreateGraph.java │ │ │ ├── GraphBean.java │ │ │ └── InitiateAlgorithm.java │ ├── GoalStack │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ └── src │ │ │ ├── GoalStackAlgorithm.java │ │ │ ├── InitiateAlgorithm.java │ │ │ ├── StackBean.java │ │ │ └── Stacks.java │ ├── HillClimbing │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ └── src │ │ │ ├── HillClimbingAlgorithm.java │ │ │ └── state.java │ └── chatbot │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ └── src │ │ └── chatbot │ │ ├── chatbot.java │ │ └── chatbot1.java ├── DA │ ├── C3 │ │ ├── hadoop4 │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ └── src │ │ │ │ └── demo │ │ │ │ ├── count.java │ │ │ │ ├── mapper.java │ │ │ │ └── reduce.java │ │ ├── input │ │ └── wordcount.jar │ ├── DA_Assign_1.ipynb │ ├── DA_Assign_2.ipynb │ ├── Iris.csv │ ├── Lp1Da4.ipynb │ ├── Pima.csv │ └── Readme.docx ├── HPC │ ├── Assignment 1A │ │ └── parallelReduction.cu │ ├── Assignment 2 │ │ ├── matrix_multiplication.cu │ │ ├── vector_addtion.cu │ │ └── vector_matrix_multiplication.cu │ ├── Assignment 3 │ │ ├── Bubble Sort paralle output.png │ │ ├── Merge Sort output.png │ │ ├── bubble │ │ ├── bubble.c │ │ ├── merge │ │ └── merge.c │ ├── Assignment A1-B │ │ ├── Old_Not_working.cu │ │ ├── a11.cu │ │ ├── a12.cu │ │ ├── a13.cu │ │ └── a14.cu │ ├── Assignment4 │ │ ├── .readme.docx │ │ ├── bs.c │ │ ├── parallelDFS │ │ │ ├── .readme.docx │ │ │ ├── parallelDFS.c │ │ │ └── serialDFS.c │ │ └── sbs.c │ ├── hpc 3 4th_half.zip │ └── omp-hands-on-SC08.pdf ├── LP 1 Lab Manual_v1.pdf └── MiniProjects │ ├── AIR Report Final.pdf │ ├── AIR_Project │ ├── MedicalExpertDengue.pl │ └── MedicalExpertSystem_Output │ ├── DA_Report.pdf │ ├── DA_bigmart │ ├── Train_UWu5bXk.csv │ ├── fnl.ipynb │ └── fnl.py │ ├── HPC Report.pdf │ └── HPCMiniProject │ ├── RunLengthEncoding.cpp │ ├── RunLengthEncoding.cu │ ├── input.txt │ └── output.txt ├── LP3 ├── ICS │ ├── AES_USING_PKG_JAVA │ │ ├── AES.java │ │ └── AES_SERVER.java │ ├── Diffie_Hellman │ │ ├── DiffieHellmanServer.java │ │ └── DiffiehellmanClient.java │ ├── ECC │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ └── src │ │ │ ├── Alice.java │ │ │ ├── Bob.java │ │ │ └── Point.java │ ├── RSA │ │ ├── Alice.java │ │ ├── Bob.java │ │ └── Old_Code │ │ │ ├── RSAClient.java │ │ │ └── RSAServer.java │ └── Simplified_DES │ │ └── SDES.java └── ML │ ├── Decison Tree │ ├── DecisonTreeClassifier.ipynb │ ├── dtree.png │ ├── sales.csv │ └── tree.png │ ├── KMEANS_Library function(For reference).ipynb │ ├── KMeans_Clustering.ipynb │ ├── KNN.ipynb │ └── LinearReg_VNKDJ5.ipynb ├── LP4 ├── Compiler │ ├── Assign1 │ │ ├── CTokens.l │ │ ├── Screenshot from 2019-04-08 00-10-30.png │ │ ├── a.out │ │ ├── input.c │ │ └── lex.yy.c │ ├── Assign2 │ │ ├── Screenshot from 2019-04-08 00-17-32.png │ │ ├── a.out │ │ ├── calc.lex │ │ ├── calc.yacc │ │ ├── lex.yy.c │ │ ├── y.tab.c │ │ └── y.tab.h │ ├── Assign3 │ │ ├── SYMTAB.java │ │ └── Screenshot from 2019-04-08 00-18-14.png │ ├── Assign4_NOT WORKING │ │ ├── a.out │ │ ├── lex.yy.c │ │ ├── semantic-analyzer-master.zip │ │ ├── semantic.l │ │ ├── semantic.y │ │ ├── y.tab.c │ │ └── y.tab.h │ ├── Assign5 │ │ ├── 3addresscode-output.png │ │ ├── 3addresscode_lex_yacc │ │ │ ├── ThreeAddressCode.java │ │ │ ├── a.out │ │ │ ├── lex.yy.c │ │ │ ├── tac.l │ │ │ ├── tac.yacc │ │ │ ├── y.tab.c │ │ │ └── y.tab.h │ │ ├── Screenshot from 2019-04-08 01-05-54.png │ │ └── ThreeAddressCode.java │ ├── Assign6 │ │ ├── Screenshot from 2019-04-08 01-07-54.png │ │ ├── Screenshot from 2019-04-08 01-07-56.png │ │ ├── a.out │ │ ├── codegen.l │ │ ├── codegen.y │ │ ├── input1.c │ │ ├── lex.yy.c │ │ ├── output.c │ │ ├── y.tab.c │ │ └── y.tab.h │ └── Assign8 │ │ ├── common-subexpression-elimination │ │ ├── Common_SubExpression.java │ │ ├── input.txt │ │ └── output.txt │ │ ├── dead code elimination Demonstration │ │ └── Sum.java │ │ └── loop-optimization │ │ ├── LoopOptimization.java │ │ ├── Sample Inputs │ │ ├── input1.txt │ │ ├── input2.txt │ │ ├── input3.txt │ │ ├── input4.txt │ │ └── input5.txt │ │ ├── input.txt │ │ └── output.txt └── Hindi POS Tagging │ ├── .ipynb_checkpoints │ └── Hindi_POS_Tagging-checkpoint.ipynb │ ├── Hindi_POS_Tagging.ipynb │ ├── Screenshots │ ├── Screenshot from 2019-04-17 20-32-59.png │ └── Screenshot from 2019-04-17 20-33-07.png │ ├── app.py │ ├── output.txt │ ├── static │ ├── bootstrap-theme.min.css │ └── bootstrap.min.css │ └── templates │ ├── hello.html │ ├── index.html │ └── result.html ├── README.md └── _config.yml /BE-Computer-2015-Course.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/BE-Computer-2015-Course.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LICENSE -------------------------------------------------------------------------------- /LP1/AI LAB/Alpha Beta Pruning/pruning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/Alpha Beta Pruning/pruning.ipynb -------------------------------------------------------------------------------- /LP1/AI LAB/AlphaBetaP_JAVA/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/AlphaBetaP_JAVA/.classpath -------------------------------------------------------------------------------- /LP1/AI LAB/AlphaBetaP_JAVA/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/AlphaBetaP_JAVA/.project -------------------------------------------------------------------------------- /LP1/AI LAB/AlphaBetaP_JAVA/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/AlphaBetaP_JAVA/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LP1/AI LAB/AlphaBetaP_JAVA/Screenshot from 2018-10-25 20-24-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/AlphaBetaP_JAVA/Screenshot from 2018-10-25 20-24-46.png -------------------------------------------------------------------------------- /LP1/AI LAB/AlphaBetaP_JAVA/src/AlphaBeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/AlphaBetaP_JAVA/src/AlphaBeta.java -------------------------------------------------------------------------------- /LP1/AI LAB/AlphaBetaP_JAVA/src/GUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/AlphaBetaP_JAVA/src/GUI.java -------------------------------------------------------------------------------- /LP1/AI LAB/B12_NQUEENS/CPP/b12_backtracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/B12_NQUEENS/CPP/b12_backtracking.cpp -------------------------------------------------------------------------------- /LP1/AI LAB/B12_NQUEENS/CPP/b12_branch_bound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/B12_NQUEENS/CPP/b12_branch_bound.cpp -------------------------------------------------------------------------------- /LP1/AI LAB/B12_NQUEENS/backtracking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/B12_NQUEENS/backtracking.ipynb -------------------------------------------------------------------------------- /LP1/AI LAB/B12_NQUEENS/branchandbound.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/B12_NQUEENS/branchandbound.ipynb -------------------------------------------------------------------------------- /LP1/AI LAB/EightPuzzleProblem/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/EightPuzzleProblem/.classpath -------------------------------------------------------------------------------- /LP1/AI LAB/EightPuzzleProblem/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/EightPuzzleProblem/.project -------------------------------------------------------------------------------- /LP1/AI LAB/EightPuzzleProblem/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/EightPuzzleProblem/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LP1/AI LAB/EightPuzzleProblem/src/AStarAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/EightPuzzleProblem/src/AStarAlgorithm.java -------------------------------------------------------------------------------- /LP1/AI LAB/EightPuzzleProblem/src/CreateGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/EightPuzzleProblem/src/CreateGraph.java -------------------------------------------------------------------------------- /LP1/AI LAB/EightPuzzleProblem/src/GraphBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/EightPuzzleProblem/src/GraphBean.java -------------------------------------------------------------------------------- /LP1/AI LAB/EightPuzzleProblem/src/InitiateAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/EightPuzzleProblem/src/InitiateAlgorithm.java -------------------------------------------------------------------------------- /LP1/AI LAB/GoalStack/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/GoalStack/.classpath -------------------------------------------------------------------------------- /LP1/AI LAB/GoalStack/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/GoalStack/.project -------------------------------------------------------------------------------- /LP1/AI LAB/GoalStack/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/GoalStack/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LP1/AI LAB/GoalStack/src/GoalStackAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/GoalStack/src/GoalStackAlgorithm.java -------------------------------------------------------------------------------- /LP1/AI LAB/GoalStack/src/InitiateAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/GoalStack/src/InitiateAlgorithm.java -------------------------------------------------------------------------------- /LP1/AI LAB/GoalStack/src/StackBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/GoalStack/src/StackBean.java -------------------------------------------------------------------------------- /LP1/AI LAB/GoalStack/src/Stacks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/GoalStack/src/Stacks.java -------------------------------------------------------------------------------- /LP1/AI LAB/HillClimbing/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/HillClimbing/.classpath -------------------------------------------------------------------------------- /LP1/AI LAB/HillClimbing/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/HillClimbing/.project -------------------------------------------------------------------------------- /LP1/AI LAB/HillClimbing/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/HillClimbing/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LP1/AI LAB/HillClimbing/src/HillClimbingAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/HillClimbing/src/HillClimbingAlgorithm.java -------------------------------------------------------------------------------- /LP1/AI LAB/HillClimbing/src/state.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/HillClimbing/src/state.java -------------------------------------------------------------------------------- /LP1/AI LAB/chatbot/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/chatbot/.classpath -------------------------------------------------------------------------------- /LP1/AI LAB/chatbot/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/chatbot/.project -------------------------------------------------------------------------------- /LP1/AI LAB/chatbot/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/chatbot/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LP1/AI LAB/chatbot/src/chatbot/chatbot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/chatbot/src/chatbot/chatbot.java -------------------------------------------------------------------------------- /LP1/AI LAB/chatbot/src/chatbot/chatbot1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/AI LAB/chatbot/src/chatbot/chatbot1.java -------------------------------------------------------------------------------- /LP1/DA/C3/hadoop4/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/C3/hadoop4/.classpath -------------------------------------------------------------------------------- /LP1/DA/C3/hadoop4/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/C3/hadoop4/.project -------------------------------------------------------------------------------- /LP1/DA/C3/hadoop4/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/C3/hadoop4/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LP1/DA/C3/hadoop4/src/demo/count.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/C3/hadoop4/src/demo/count.java -------------------------------------------------------------------------------- /LP1/DA/C3/hadoop4/src/demo/mapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/C3/hadoop4/src/demo/mapper.java -------------------------------------------------------------------------------- /LP1/DA/C3/hadoop4/src/demo/reduce.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/C3/hadoop4/src/demo/reduce.java -------------------------------------------------------------------------------- /LP1/DA/C3/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/C3/input -------------------------------------------------------------------------------- /LP1/DA/C3/wordcount.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/C3/wordcount.jar -------------------------------------------------------------------------------- /LP1/DA/DA_Assign_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/DA_Assign_1.ipynb -------------------------------------------------------------------------------- /LP1/DA/DA_Assign_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/DA_Assign_2.ipynb -------------------------------------------------------------------------------- /LP1/DA/Iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/Iris.csv -------------------------------------------------------------------------------- /LP1/DA/Lp1Da4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/Lp1Da4.ipynb -------------------------------------------------------------------------------- /LP1/DA/Pima.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/Pima.csv -------------------------------------------------------------------------------- /LP1/DA/Readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/DA/Readme.docx -------------------------------------------------------------------------------- /LP1/HPC/Assignment 1A/parallelReduction.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment 1A/parallelReduction.cu -------------------------------------------------------------------------------- /LP1/HPC/Assignment 2/matrix_multiplication.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment 2/matrix_multiplication.cu -------------------------------------------------------------------------------- /LP1/HPC/Assignment 2/vector_addtion.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment 2/vector_addtion.cu -------------------------------------------------------------------------------- /LP1/HPC/Assignment 2/vector_matrix_multiplication.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment 2/vector_matrix_multiplication.cu -------------------------------------------------------------------------------- /LP1/HPC/Assignment 3/Bubble Sort paralle output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment 3/Bubble Sort paralle output.png -------------------------------------------------------------------------------- /LP1/HPC/Assignment 3/Merge Sort output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment 3/Merge Sort output.png -------------------------------------------------------------------------------- /LP1/HPC/Assignment 3/bubble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment 3/bubble -------------------------------------------------------------------------------- /LP1/HPC/Assignment 3/bubble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment 3/bubble.c -------------------------------------------------------------------------------- /LP1/HPC/Assignment 3/merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment 3/merge -------------------------------------------------------------------------------- /LP1/HPC/Assignment 3/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment 3/merge.c -------------------------------------------------------------------------------- /LP1/HPC/Assignment A1-B/Old_Not_working.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment A1-B/Old_Not_working.cu -------------------------------------------------------------------------------- /LP1/HPC/Assignment A1-B/a11.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment A1-B/a11.cu -------------------------------------------------------------------------------- /LP1/HPC/Assignment A1-B/a12.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment A1-B/a12.cu -------------------------------------------------------------------------------- /LP1/HPC/Assignment A1-B/a13.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment A1-B/a13.cu -------------------------------------------------------------------------------- /LP1/HPC/Assignment A1-B/a14.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment A1-B/a14.cu -------------------------------------------------------------------------------- /LP1/HPC/Assignment4/.readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment4/.readme.docx -------------------------------------------------------------------------------- /LP1/HPC/Assignment4/bs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment4/bs.c -------------------------------------------------------------------------------- /LP1/HPC/Assignment4/parallelDFS/.readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment4/parallelDFS/.readme.docx -------------------------------------------------------------------------------- /LP1/HPC/Assignment4/parallelDFS/parallelDFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment4/parallelDFS/parallelDFS.c -------------------------------------------------------------------------------- /LP1/HPC/Assignment4/parallelDFS/serialDFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment4/parallelDFS/serialDFS.c -------------------------------------------------------------------------------- /LP1/HPC/Assignment4/sbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/Assignment4/sbs.c -------------------------------------------------------------------------------- /LP1/HPC/hpc 3 4th_half.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/hpc 3 4th_half.zip -------------------------------------------------------------------------------- /LP1/HPC/omp-hands-on-SC08.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/HPC/omp-hands-on-SC08.pdf -------------------------------------------------------------------------------- /LP1/LP 1 Lab Manual_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/LP 1 Lab Manual_v1.pdf -------------------------------------------------------------------------------- /LP1/MiniProjects/AIR Report Final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/AIR Report Final.pdf -------------------------------------------------------------------------------- /LP1/MiniProjects/AIR_Project/MedicalExpertDengue.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/AIR_Project/MedicalExpertDengue.pl -------------------------------------------------------------------------------- /LP1/MiniProjects/AIR_Project/MedicalExpertSystem_Output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/AIR_Project/MedicalExpertSystem_Output -------------------------------------------------------------------------------- /LP1/MiniProjects/DA_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/DA_Report.pdf -------------------------------------------------------------------------------- /LP1/MiniProjects/DA_bigmart/Train_UWu5bXk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/DA_bigmart/Train_UWu5bXk.csv -------------------------------------------------------------------------------- /LP1/MiniProjects/DA_bigmart/fnl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/DA_bigmart/fnl.ipynb -------------------------------------------------------------------------------- /LP1/MiniProjects/DA_bigmart/fnl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/DA_bigmart/fnl.py -------------------------------------------------------------------------------- /LP1/MiniProjects/HPC Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/HPC Report.pdf -------------------------------------------------------------------------------- /LP1/MiniProjects/HPCMiniProject/RunLengthEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/HPCMiniProject/RunLengthEncoding.cpp -------------------------------------------------------------------------------- /LP1/MiniProjects/HPCMiniProject/RunLengthEncoding.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/HPCMiniProject/RunLengthEncoding.cu -------------------------------------------------------------------------------- /LP1/MiniProjects/HPCMiniProject/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP1/MiniProjects/HPCMiniProject/input.txt -------------------------------------------------------------------------------- /LP1/MiniProjects/HPCMiniProject/output.txt: -------------------------------------------------------------------------------- 1 | p62g44M18y49l27 -------------------------------------------------------------------------------- /LP3/ICS/AES_USING_PKG_JAVA/AES.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/AES_USING_PKG_JAVA/AES.java -------------------------------------------------------------------------------- /LP3/ICS/AES_USING_PKG_JAVA/AES_SERVER.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/AES_USING_PKG_JAVA/AES_SERVER.java -------------------------------------------------------------------------------- /LP3/ICS/Diffie_Hellman/DiffieHellmanServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/Diffie_Hellman/DiffieHellmanServer.java -------------------------------------------------------------------------------- /LP3/ICS/Diffie_Hellman/DiffiehellmanClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/Diffie_Hellman/DiffiehellmanClient.java -------------------------------------------------------------------------------- /LP3/ICS/ECC/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/ECC/.classpath -------------------------------------------------------------------------------- /LP3/ICS/ECC/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/ECC/.project -------------------------------------------------------------------------------- /LP3/ICS/ECC/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/ECC/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LP3/ICS/ECC/src/Alice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/ECC/src/Alice.java -------------------------------------------------------------------------------- /LP3/ICS/ECC/src/Bob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/ECC/src/Bob.java -------------------------------------------------------------------------------- /LP3/ICS/ECC/src/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/ECC/src/Point.java -------------------------------------------------------------------------------- /LP3/ICS/RSA/Alice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/RSA/Alice.java -------------------------------------------------------------------------------- /LP3/ICS/RSA/Bob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/RSA/Bob.java -------------------------------------------------------------------------------- /LP3/ICS/RSA/Old_Code/RSAClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/RSA/Old_Code/RSAClient.java -------------------------------------------------------------------------------- /LP3/ICS/RSA/Old_Code/RSAServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/RSA/Old_Code/RSAServer.java -------------------------------------------------------------------------------- /LP3/ICS/Simplified_DES/SDES.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ICS/Simplified_DES/SDES.java -------------------------------------------------------------------------------- /LP3/ML/Decison Tree/DecisonTreeClassifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ML/Decison Tree/DecisonTreeClassifier.ipynb -------------------------------------------------------------------------------- /LP3/ML/Decison Tree/dtree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ML/Decison Tree/dtree.png -------------------------------------------------------------------------------- /LP3/ML/Decison Tree/sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ML/Decison Tree/sales.csv -------------------------------------------------------------------------------- /LP3/ML/Decison Tree/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ML/Decison Tree/tree.png -------------------------------------------------------------------------------- /LP3/ML/KMEANS_Library function(For reference).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ML/KMEANS_Library function(For reference).ipynb -------------------------------------------------------------------------------- /LP3/ML/KMeans_Clustering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ML/KMeans_Clustering.ipynb -------------------------------------------------------------------------------- /LP3/ML/KNN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ML/KNN.ipynb -------------------------------------------------------------------------------- /LP3/ML/LinearReg_VNKDJ5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP3/ML/LinearReg_VNKDJ5.ipynb -------------------------------------------------------------------------------- /LP4/Compiler/Assign1/CTokens.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign1/CTokens.l -------------------------------------------------------------------------------- /LP4/Compiler/Assign1/Screenshot from 2019-04-08 00-10-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign1/Screenshot from 2019-04-08 00-10-30.png -------------------------------------------------------------------------------- /LP4/Compiler/Assign1/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign1/a.out -------------------------------------------------------------------------------- /LP4/Compiler/Assign1/input.c: -------------------------------------------------------------------------------- 1 | #include 2 | void main() 3 | { 4 | int a,b; 5 | char bilateral; 6 | a=3; 7 | c=a+d; 8 | } 9 | -------------------------------------------------------------------------------- /LP4/Compiler/Assign1/lex.yy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign1/lex.yy.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign2/Screenshot from 2019-04-08 00-17-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign2/Screenshot from 2019-04-08 00-17-32.png -------------------------------------------------------------------------------- /LP4/Compiler/Assign2/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign2/a.out -------------------------------------------------------------------------------- /LP4/Compiler/Assign2/calc.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign2/calc.lex -------------------------------------------------------------------------------- /LP4/Compiler/Assign2/calc.yacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign2/calc.yacc -------------------------------------------------------------------------------- /LP4/Compiler/Assign2/lex.yy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign2/lex.yy.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign2/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign2/y.tab.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign2/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign2/y.tab.h -------------------------------------------------------------------------------- /LP4/Compiler/Assign3/SYMTAB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign3/SYMTAB.java -------------------------------------------------------------------------------- /LP4/Compiler/Assign3/Screenshot from 2019-04-08 00-18-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign3/Screenshot from 2019-04-08 00-18-14.png -------------------------------------------------------------------------------- /LP4/Compiler/Assign4_NOT WORKING/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign4_NOT WORKING/a.out -------------------------------------------------------------------------------- /LP4/Compiler/Assign4_NOT WORKING/lex.yy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign4_NOT WORKING/lex.yy.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign4_NOT WORKING/semantic-analyzer-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign4_NOT WORKING/semantic-analyzer-master.zip -------------------------------------------------------------------------------- /LP4/Compiler/Assign4_NOT WORKING/semantic.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign4_NOT WORKING/semantic.l -------------------------------------------------------------------------------- /LP4/Compiler/Assign4_NOT WORKING/semantic.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign4_NOT WORKING/semantic.y -------------------------------------------------------------------------------- /LP4/Compiler/Assign4_NOT WORKING/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign4_NOT WORKING/y.tab.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign4_NOT WORKING/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign4_NOT WORKING/y.tab.h -------------------------------------------------------------------------------- /LP4/Compiler/Assign5/3addresscode-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign5/3addresscode-output.png -------------------------------------------------------------------------------- /LP4/Compiler/Assign5/3addresscode_lex_yacc/ThreeAddressCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign5/3addresscode_lex_yacc/ThreeAddressCode.java -------------------------------------------------------------------------------- /LP4/Compiler/Assign5/3addresscode_lex_yacc/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign5/3addresscode_lex_yacc/a.out -------------------------------------------------------------------------------- /LP4/Compiler/Assign5/3addresscode_lex_yacc/lex.yy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign5/3addresscode_lex_yacc/lex.yy.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign5/3addresscode_lex_yacc/tac.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign5/3addresscode_lex_yacc/tac.l -------------------------------------------------------------------------------- /LP4/Compiler/Assign5/3addresscode_lex_yacc/tac.yacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign5/3addresscode_lex_yacc/tac.yacc -------------------------------------------------------------------------------- /LP4/Compiler/Assign5/3addresscode_lex_yacc/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign5/3addresscode_lex_yacc/y.tab.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign5/3addresscode_lex_yacc/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign5/3addresscode_lex_yacc/y.tab.h -------------------------------------------------------------------------------- /LP4/Compiler/Assign5/Screenshot from 2019-04-08 01-05-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign5/Screenshot from 2019-04-08 01-05-54.png -------------------------------------------------------------------------------- /LP4/Compiler/Assign5/ThreeAddressCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign5/ThreeAddressCode.java -------------------------------------------------------------------------------- /LP4/Compiler/Assign6/Screenshot from 2019-04-08 01-07-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign6/Screenshot from 2019-04-08 01-07-54.png -------------------------------------------------------------------------------- /LP4/Compiler/Assign6/Screenshot from 2019-04-08 01-07-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign6/Screenshot from 2019-04-08 01-07-56.png -------------------------------------------------------------------------------- /LP4/Compiler/Assign6/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign6/a.out -------------------------------------------------------------------------------- /LP4/Compiler/Assign6/codegen.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign6/codegen.l -------------------------------------------------------------------------------- /LP4/Compiler/Assign6/codegen.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign6/codegen.y -------------------------------------------------------------------------------- /LP4/Compiler/Assign6/input1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign6/input1.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign6/lex.yy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign6/lex.yy.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign6/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign6/output.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign6/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign6/y.tab.c -------------------------------------------------------------------------------- /LP4/Compiler/Assign6/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign6/y.tab.h -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/common-subexpression-elimination/Common_SubExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/common-subexpression-elimination/Common_SubExpression.java -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/common-subexpression-elimination/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/common-subexpression-elimination/input.txt -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/common-subexpression-elimination/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/common-subexpression-elimination/output.txt -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/dead code elimination Demonstration/Sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/dead code elimination Demonstration/Sum.java -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/loop-optimization/LoopOptimization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/loop-optimization/LoopOptimization.java -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/loop-optimization/Sample Inputs/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/loop-optimization/Sample Inputs/input1.txt -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/loop-optimization/Sample Inputs/input2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/loop-optimization/Sample Inputs/input2.txt -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/loop-optimization/Sample Inputs/input3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/loop-optimization/Sample Inputs/input3.txt -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/loop-optimization/Sample Inputs/input4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/loop-optimization/Sample Inputs/input4.txt -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/loop-optimization/Sample Inputs/input5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/loop-optimization/Sample Inputs/input5.txt -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/loop-optimization/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/loop-optimization/input.txt -------------------------------------------------------------------------------- /LP4/Compiler/Assign8/loop-optimization/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Compiler/Assign8/loop-optimization/output.txt -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/.ipynb_checkpoints/Hindi_POS_Tagging-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/.ipynb_checkpoints/Hindi_POS_Tagging-checkpoint.ipynb -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/Hindi_POS_Tagging.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/Hindi_POS_Tagging.ipynb -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/Screenshots/Screenshot from 2019-04-17 20-32-59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/Screenshots/Screenshot from 2019-04-17 20-32-59.png -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/Screenshots/Screenshot from 2019-04-17 20-33-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/Screenshots/Screenshot from 2019-04-17 20-33-07.png -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/app.py -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/output.txt -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/static/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/static/bootstrap-theme.min.css -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/static/bootstrap.min.css -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/templates/hello.html -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/templates/index.html -------------------------------------------------------------------------------- /LP4/Hindi POS Tagging/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/LP4/Hindi POS Tagging/templates/result.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | SPPU BE COMP 2015 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnkdj5/SPPU_BE_COMP_2015/HEAD/_config.yml --------------------------------------------------------------------------------