You can view links according to topics here. You can also submit a new link using “Add a Link”.
External Links
Merging K sorted arrays.categorized in Data Structures & Algorithms, submitted 1 year ago by sesha A deep-dive into various Algorithms for "Merging K sorted arrays" and their implementations including Tournament Tree method. - more info |
Collection of problemscategorized in Data Structures & Algorithms, submitted 1 year ago by kartik Collection of problems - more info |
Algorithm Lecture Notescategorized in Data Structures & Algorithms, submitted 1 year ago by kartik Algorithm Lecture Notes - more info |
8 bit avenuecategorized in Data Structures & Algorithms, submitted 1 year ago by kontacartoonizer Everything computers, mainly algorithms, has one of the best introductions to dynamic programming - more info |
Singleton Design Patterncategorized in Data Structures & Algorithms, submitted 1 year ago by sesha Singleton Design Pattern - An article covering all aspects of this pattern including easy to understand Implementations and real-time scenarios. - more info |
Stanford Online Class for Algotithmscategorized in Data Structures & Algorithms, submitted 1 year ago by Abhinav In this course you will learn several fundamental principles of algorithm design. - more info |
20 Line Sudoku Solver in Ccategorized in Data Structures & Algorithms, submitted 1 year ago by kartik Having a discussion with some friends one day about the easiest way to verify whether or not a completed 9x9 Sudoku puzzle is valid, meaning that all - more info |
C-String functionscategorized in C Language, submitted 1 year ago by sesha An article focusing on how to avoid mistakes while using C-language string functions. Lots of sample implementations to explain the bugs. - more info |
NPTEL Courses on Computer Science Subjectscategorized in General Programming, submitted 1 year ago by kartik Artificial Intelligence(Prof.P.Dasgupta) Video Prof. P. Dasgupta IIT Kharagpur Course contents - more info |
How to Rock an Algorithms Interviewcategorized in Interview Corner, submitted 1 year ago by kartik We do a lot of interviewing at Palantir, and let me tell you: it’s hard. I don’t mean that we ask tough questions (although we do). I mean that the ta - more info |
Computer science concepts as told through fairy tales.categorized in Data Structures & Algorithms, submitted 1 year ago by kartik Computational Fairy Tales includes over 60 stories that cover a range of different computer science concepts from introductory programming, to high le - more info |
MIT Course: Mathematcis for Computer Sciencecategorized in Data Structures & Algorithms, submitted 1 year ago by kartik You may bring a single-sided page of notes on normal-sized paper to the quiz. This will apply as well for all subsequent quizzes. Crib sheets may be h - more info |
Sergey Brin and Lawrence Page's Paper: The Anatomy of a Search Enginecategorized in General Programming, submitted 1 year ago by kartik In this paper, we present Google, a prototype of a large-scale search engine which makes heavy use of the structure present in hypertext. Google is de - more info |
Data Structures Notescategorized in Data Structures & Algorithms, submitted 1 year ago by kartik These notes provide an introduction to some of the most commonly occurring data structures. The language used is Java. The aim is not the greatest gen - more info |
Learn C The Hard Waycategorized in C Language, submitted 1 year ago by kartik A Clear & Direct Introduction To Modern C Programming Zed A. Shaw - more info |
Thinking In C++ Volume 2: Practical Programmingcategorized in C++ Language, submitted 1 year ago by kartik By Bruce Eckel, President, MindView, Inc. Chuck Allison, Utah Valley State College Book Home Page Annotated Solution Guide Report Errors Here - more info |
How to become a hackercategorized in General Programming, submitted 1 year ago by kartik Becoming a hacker is a worthwhile pursuit. Do you have what it takes to become a hacker? - more info |
A very fast approach to auto complete (or search suggestions)categorized in Data Structures & Algorithms, submitted 1 year ago by kartik You've seen search engines suggest queries when you begin typing the first few letters of your search string. This is being done by Duck Duck Go as we - more info |
char[] versus char*categorized in C Language, submitted 1 year ago by kartik This post will shed some light on the differences between arrays and pointers specifically when it comes about referencing string literals. We will ba - more info |
InformIT: C++ Reference guidecategorized in C++ Language, submitted 1 year ago by ravichandra On this page differences between static and dynamic linking. The advantages of using dynamic linking are also explained. - more info |
The C++ 'const' Declaration: Why & Howcategorized in C++ Language, submitted 1 year ago by kartik The 'const' system is one of the really messy features of C++. It is simple in concept: variables declared with ‘const’ added become constants and c - more info |
eBay-PayPal interview expiriencecategorized in Interview Corner, submitted 1 year ago by sinhanurag eBay-PayPal interview expirience - more info |
Methods GET and POST in HTML forms - what's the difference?categorized in Web Development, submitted 1 year ago by kartik In HTML, one can specify two different submission methods for a form. The method is specified inside a FORM element, using the METHOD attribute. The d - more info |
Java for C and C++ Programmerscategorized in Java Language, submitted 1 year ago by kartik There are two kinds of Java data: simple data and objects. Simple java data are boolean, character, integer, and real values. Java objects are encapsu - more info |
Write Your Own Operating System Tutorialcategorized in Operating Systems, submitted 1 year ago by Sandeep Introduction Lesson 1: The Boot Sector Lesson 2: Making Our First bootable Disk Lesson 3: NASM Lesson 4: Hello, World - more info |