Category: Design and Analysis of Algorithm

Home Design and Analysis of Algorithm
Technorion 2025 fifth edition event showcasing Nepali innovators on the global stage.
Post

Technorion 2025 Marks Fifth Edition With the Theme ‘Nepali Innovators on the Global Stage’

Technorion 2025 to be held at ACEM on December 12 Kathmandu — December 12, 2025 The Advanced College of Engineering and Management (ACEM) is set to host Technorion 2025, the fifth edition of its flagship annual technology festival, on December 12 at the ACEM campus. Organized by the Advanced Robotic Club (ARC), the event has...

Design & Analysis of Algorithm Old Exam Question – First Semester | MCS | Lincoln University College
Post

Design & Analysis of Algorithm Old Exam Question – First Semester | MCS | Lincoln University College

LINCOLN UNIVERSITY COLLEGE EXAMINATION PAPER FACULTY: COMPUTER SCIENCE AND MULTIMEDIA COURSE: MASTER OF COMPUTER SCIENCE YEAR/ SEMESTER:FIRST YEAR/SEMESTER ONE MODULE TITLE: DESIGN & ANALYSIS OF ALGORITHM CODE: MCS 112 TIME ALLOWED:3 HOURS Instruction to candidates 1. This question paper has THREE (3) Sections. 2. Answer ALL questions in Section A, VSAQ 3. Answer 7 questions...

Post

C Program to add Two (Very) Large Numbers

include include int charToInt (char stringNumber){return stringNumber – ‘0’;} int main (){char first_number[] = “55”;char second_number[] = “166”;char sum_string[500], str, sum_string_rev[500];int _first_number, _second_number;int sum, first_number_length, second_number_length, carry, count_up_to;first_number_length = strlen (first_number);second_number_length = strlen (second_number); count_up_to = first_number_length>second_number_length? first_number_length: second_number_length;carry = 0;int j=0;for(int i=count_up_to-1; i>=0;i–,j++){_first_number = 0;_second_number = 0;if(j<first_number_length){_first_number = charToInt(first_number[first_number_length-j-1]);} } if(carry){sum_string[j] = carry +...

Post

Recurrence Relations | Solving Recurrence Relation to find Complexity

Recursive Algorithm It can be solved in terms of itself Recurrence relation defines sequenced based on rule those next terms as a function of previous terms. Next term is function of pervious terms. Defined by itself (in term of previous terms) Can model the cpmplexity of divide and conquer algorithm Solving Recurrence Relations To define...

Design and Analysis of Algorithms (DAA) – Micro Syllabus
Post

Design and Analysis of Algorithms (DAA) – Micro Syllabus

Foundation of Algorithm Analysis Algorith and its properties RAM Model Time and Space Complexity Detail Analysis of Algorithm (Like Factorial Algorithm) Concept of Aggregate Analysis Asymptotic Notation Big Oh, Big Omega and Big Theta Notation, Their Geometrical Interpretation and examples Recurrences Recursive algorithm and recursive relations Solving Recurrences Recursion Tree Method, Substitution Method, Application of...

Algorithm, RAM Model, Asymptotic Notation
Post

Algorithm, RAM Model, Asymptotic Notation

Algorithm Finite set of computational instructions Set of steps to solve the problem Properties: Input / output : some input from some standard set of input and must produce output Definiteness: each step must be unambiguous Finiteness: algorithm must terminate after finite tome or steps Correctness: correct set of output values must be provided from...