SlideShare a Scribd company logo
2016 Winter
Prepared by: Berk Soysal
(b)
(d)
(b)
(d)
(c)
(a)
(c)
(a)
(c)
(c)
(a)
(c)
(a)
Self Evaluation Test
12
169
1 15
13
Self Evaluation Test
Self Evaluation Test
Self Evaluation Test
Self Evaluation Test
Self Evaluation Test
static void mirrorTree(node root)
{
if(root == null)
return;
node left = root.getLeft();
node right = root.getRight();
node.setLeft(right);
node.setRight(left);
mirrorTree(right);
mirrorTree(left);
}
Self Evaluation Test
Self Evaluation Test
Self Evaluation Test
4 1 2
555 100 999
list1
list2
4 1 2
Node p
Node
q = p.next
list2
555 100 999
list1.insertAfter(1, list2);
otherFirst otherLast
p.next = otherFirst;
otherFirst.previous = p;
otherLast.next = q;
q.previous = otherLast;
http://Soysal.tk

More Related Content

PDF
Flink meetup
DOCX
Write a program that calculate the no of prime no,even and odd no.
PPTX
Deleting a Node from a Binary Search Tree (Scheme
PPTX
Lpp using Excel Solver
DOCX
แผนการจัดการเรียนรู้ที่ ๓
PPTX
hex to 7 seg display
PPTX
Java Tutorial Lab 8
PPTX
Java Tutorial Lab 9
Flink meetup
Write a program that calculate the no of prime no,even and odd no.
Deleting a Node from a Binary Search Tree (Scheme
Lpp using Excel Solver
แผนการจัดการเรียนรู้ที่ ๓
hex to 7 seg display
Java Tutorial Lab 8
Java Tutorial Lab 9

Viewers also liked (7)

PPTX
Java Tutorial Lab 5
PPTX
Java Tutorial Lab 6
PPTX
Java Tutorial Lab 4
PPTX
Java Tutorial Lab 2
PPTX
Java Tutorial Lab 3
PPTX
Java Tutorial Lab 7
PPTX
Java Tutorial Lab 1
Java Tutorial Lab 5
Java Tutorial Lab 6
Java Tutorial Lab 4
Java Tutorial Lab 2
Java Tutorial Lab 3
Java Tutorial Lab 7
Java Tutorial Lab 1
Ad

Recently uploaded (20)

PPTX
Introduction to Artificial Intelligence
PDF
System and Network Administraation Chapter 3
PPTX
Transform Your Business with a Software ERP System
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
top salesforce developer skills in 2025.pdf
PDF
Digital Strategies for Manufacturing Companies
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
AI in Product Development-omnex systems
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
System and Network Administration Chapter 2
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PPT
Introduction Database Management System for Course Database
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
Introduction to Artificial Intelligence
System and Network Administraation Chapter 3
Transform Your Business with a Software ERP System
Odoo POS Development Services by CandidRoot Solutions
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
top salesforce developer skills in 2025.pdf
Digital Strategies for Manufacturing Companies
Softaken Excel to vCard Converter Software.pdf
AI in Product Development-omnex systems
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
How to Migrate SBCGlobal Email to Yahoo Easily
System and Network Administration Chapter 2
2025 Textile ERP Trends: SAP, Odoo & Oracle
Introduction Database Management System for Course Database
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Understanding Forklifts - TECH EHS Solution
CHAPTER 2 - PM Management and IT Context
Wondershare Filmora 15 Crack With Activation Key [2025
Ad

Self Evaluation Test