SlideShare a Scribd company logo
1 of 56
presentation
Slide: 1
MAHMUDUL HASAN
S.M SAIFUL ISLAM
ARAFAT HOSSAIN
Slide:2
Slide: 3
COURSE CODE: CSE 207
 COURSE TITLE: DATA STRUCTURES
 Course instructor: Md. Shamsuj joha
Senior Lecturer
 DEPT. OF COMPUTER SCIENCE AND
ENGINEERING
Slide: 4
Definition.
Structure.
Application
Insertion
Search.
Deletion
Slide: 5
Definition
Digital search tree is one
kind of binary tree which
contains only binary data.
If the bit of DST starts with
0 then it is in left subtree
and if the bit starts with 1
then it is in right subtree
and this process works
recursively.
Slide: 6
 All keys in the left subtree of a
node at level I. Whose have bit i
equal to zero whereas those in the
right subtree of nodes at this level
have bit i = 1.
 New elements require more bits
then previous item. Slide: 7
 Digital Search Tree
Root contains one dictionary pair (any pair)
All remaining pairs whose key begins with
a 0 are in the left subtree.
All remaining pairs whose key begins with
a 1 are in the right subtree.
Left and right subtrees are digital subtrees
on remaining bits.
Slide: 8
****
0***
00**
001*
1***
10**
100*
11**
110*
Slide: 9
 A 00001
 S 10011
 E 00101
 R 10010
 C 00011
 H 01000
 I 01001
 N 01110
 G 00111
 X 11000
 M 01101
 P 10000
A
E S
R XC H
G I N
M
P
Slide: 10
Application – IP routing, packet
classification, firewalls.
IPv4 – 32 bit IP address.
IPv6 – 128 bit IP address.
Slide: 11
o IPv4 is the fourth generation of internet protocol version and the most
used version.
o IPv6 is the Internet's next-generation protocol and the current version of
internet protocol which replace the IPv4.
o A firewall is a network security system, either hardware or software based,
that controls incoming and outgoing network traffic based on a set of rules.
Slide: 12
Slide:13
 To insert an element in DST.
There will be four(4) possible cases.
Tree Empty
 If found ‘0’, then go left
 If found ‘1’ then go right
 If found same key, then
insert with prefix equal
Slide:14
 Insert a key whose value is 1001
Slide: 15
 Insert a key whose value is 1001
1001
Slide: 16
A
 1001,
 Now insert 0110
1001
Slide: 17
A
 1001,0110
1001
0110
Slide: 18
A
B
 1001,0110
 Now insert 1111
A
1001
0110
B
Slide:19
 1001,0110,1111
A
1001
0110
B
1111
C
Slide: 20
 Now, insert a pair whose key is 0000
A
1001
0110
B
1111
C
Slide: 21
 1001,0110,1111,0000
A
1001
0110
B
1111
C
0000
Slide: 22
 Now, insert a pair whose key is 0100
A
1001
0110
B
1111
C
0000
D
0100
E
Slide: 23
 Now, insert a pair whose key is 0101
A
1001
0110
B
1111
C
0000 0100
0101
D E
G
Slide:24
 Now, insert a pair whose key is 1100
A
1001
0110
B
1111
C
0000 0100
0101
D E
G
1100
F
Slide: 25
 Now, insert a pair whose key is 1110
A
1001
0110
B
1111
C
0000 0100
0101
D E
G
1100
F
1110
I
Slide: 26
Slide: 27
DST search for key K
For each node T in the tree we have 4
possible results.
 T is empty.
 K matches T .
 Current bit of K is a 0 and go to left child.
 Current bit of K is a 1 and go to right child.
Slide: 28
Example:
Search
0001
1001
1111
1100
0110
0000 0100
0101 1110
A
B C
D
E
F
G
I
Slide: 29
Example:
Search
0001
First bit 0
1001
1111
1100
0110
0000 0100
0101 1110
A
B C
D
E
F
G
I
Slide: 30
Example:
Search
0001
First bit 0
Second bit 0
1001
1111
1100
0110
0000 0100
0101 1110
A
B C
D
E
F
G
I
Slide: 31
Example:
Search
0001
Not found
1001
1111
1100
0110
0000 0100
0101 1110
A
B C
D
E
F
G
I
Slide: 32
Search
1110
Now
1110=I
1001
1111
1100
0110
0000 0100
0101 1110
A
B C
D
E
F
G
I
Slide: 33
Search
1110
Now
1110=I
first bit 1
1001
1111
1100
0110
0000 0100
0101 1110
A
B C
D
E
F
G
I
Slide: 34
Search
1110
Now
1110=I
second
bit 1
1001
1111
1100
0110
0000 0100
0101 1110
A
B C
D
E
F
G
I
Slide: 35
Search
1110
Now
1110=I
Third bit 1
So K
found
1001
1111
1100
0110
0000 0100
0101 1110
A
B C
D
E
F
G
I
Slide: 36
Search 0100
Now 0100=E
1001
1111
1100
0110
0000 0100
0101
1110
A
B C
D E F
G
I
Slide: 37
Search 0100
Now 0100=E
first Bit 0
1001
1111
1100
0110
0000 0100
0101
1110
A
B C
D E F
G
I
Slide: 38
Search 0100
Now 0100=E
second Bit 1
1001
1111
1100
0110
0000 0100
0101
1110
A
B C
D E F
G
I
Slide: 39
Search 0100
Now 0100=E
second Bit 1
So K found
1001
1111
1100
0110
0000 0100
0101
1110
A
B C
D E F
G
I
Slide: 40
Struct node{
int key,info;
struct node *l,*r ;
}
static struct node *head,*z;
unsigned bits(unsigned x, int k, int j)
return (x>>k) & ~(~0<<j);
Int digital_search(int v)
{
struct node *x=head;
int b=maxb; // maxb is the number of bits in the key to besorted
z->key=v;
while(v!=x->key)
x=(bits(v,b--,1) ? x->r : x->l;
return x->info;
}
Slide: 41
Slide:42
DELETION
 For each node in the tree we have 3
possible cases.
 No child.
 One child.
 Two children.
Slide: 43
Delete in Digital Search Tree
1001
1111
1100
0110
0000 0100
0101 1110
A
B C
D
E F
G
I
Slide: 44
Delete in Digital Search Tree
1001
1111
1100
0110
0000 0100
0101 1110
A
B C
D
E F
G
I
Slide: 45
Delete in Digital Search Tree
1001
1111
1100
0110
0000 0100
1110
A
B C
D
E F
I
0000
G
Slide: 46
Delete in Digital Search Tree
1001
11110110
0000 0100 1110
A
B C
D
E I
Slide: 47
Delete in Digital Search Tree
1001
11110110
0000 0100 1100
A
B C
D
E
I
1110
F
0000
G
Slide: 48
Delete in Digital Search Tree
1001
1111
0000
0100
11
A
C
D
E
I
1110
F
0101
G
Slide: 49
1.Search key
2. if(key==Node)
free(Node);
if(Node->left==NULL && Node->right==NULL
Do Nothing;
else if(Node->left!=NULL)
Replace Node with next left Node
else if(Node->right!=NULL)
Replace Node with next right Node
else if(Node->right!=NULL && Node->left!=NULL )
Replace Node with next any Node
Slide: 50
 Insertion, search and deletion in DST are
easier than the Binary search tree and
AVL tree.
 This tree does not required additional
information to maintain the balance of
the tree because the depth of the tree is
limited by the length of the key element.
 DST requires less memory than Binary
search tree and AVL tree.
Slide: 51
 Bitwise operations are not always easy.
 Handling duplicates is problematic.
 Similar problem with keys of different lengths.
 Data is not sorted.
 If a key is long search and comparisons are
costly, this can be problem.
Slide:52
 The digital search trees can be
recommended for use whenever the keys
stored are integers
 Character strings of fixed width.
 DSTs are also suitable in many cases when
the keys are strings of variable length.
Slide: 53
Slide: 54
Slide: 55
 https://www.google.com/search?q=referrance&ie=u
tf-8&oe=utf-8
 http://myweb.utaipei.edu.tw/~lai/af-teach/af-
algorithm-
DS/DSinjava/Digital%20Search%20Tree.ppt
 http://programming.im.ncnu.edu.tw/HorowitzC2e/
lec49.ppt
 https://www.google.com/
Slide: 56

More Related Content

What's hot (20)

Time complexity
Time complexityTime complexity
Time complexity
 
Binary search tree(bst)
Binary search tree(bst)Binary search tree(bst)
Binary search tree(bst)
 
Search tree,Tree and binary tree and heap tree
Search tree,Tree  and binary tree and heap treeSearch tree,Tree  and binary tree and heap tree
Search tree,Tree and binary tree and heap tree
 
Avl tree
Avl treeAvl tree
Avl tree
 
B+ Tree
B+ TreeB+ Tree
B+ Tree
 
Different Sorting tecniques in Data Structure
Different Sorting tecniques in Data StructureDifferent Sorting tecniques in Data Structure
Different Sorting tecniques in Data Structure
 
Avl trees
Avl treesAvl trees
Avl trees
 
Binary search
Binary searchBinary search
Binary search
 
Binary search trees
Binary search treesBinary search trees
Binary search trees
 
Heap and heapsort
Heap and heapsortHeap and heapsort
Heap and heapsort
 
Data Structures with C Linked List
Data Structures with C Linked ListData Structures with C Linked List
Data Structures with C Linked List
 
Red black tree
Red black treeRed black tree
Red black tree
 
Binary search Algorithm
Binary search AlgorithmBinary search Algorithm
Binary search Algorithm
 
Red black tree
Red black treeRed black tree
Red black tree
 
Binary Search - Design & Analysis of Algorithms
Binary Search - Design & Analysis of AlgorithmsBinary Search - Design & Analysis of Algorithms
Binary Search - Design & Analysis of Algorithms
 
Binary search tree operations
Binary search tree operationsBinary search tree operations
Binary search tree operations
 
Persistent Search Trees
Persistent Search TreesPersistent Search Trees
Persistent Search Trees
 
Queue Data Structure
Queue Data StructureQueue Data Structure
Queue Data Structure
 
Red black trees
Red black treesRed black trees
Red black trees
 
Binary Tree in Data Structure
Binary Tree in Data StructureBinary Tree in Data Structure
Binary Tree in Data Structure
 

Viewers also liked

nơi nào dịch vụ giúp việc theo giờ uy tín ở hcm
nơi nào dịch vụ giúp việc theo giờ uy tín ở hcmnơi nào dịch vụ giúp việc theo giờ uy tín ở hcm
nơi nào dịch vụ giúp việc theo giờ uy tín ở hcmlonnie241
 
Tidak perlu mucikari
Tidak perlu mucikariTidak perlu mucikari
Tidak perlu mucikariSoca Sunda
 
Travel agency in cabo
Travel agency in caboTravel agency in cabo
Travel agency in caboIvan Pacheco
 
nhận làm dịch vụ giúp việc nhà có kinh nghiệm tại sài gòn
nhận làm dịch vụ giúp việc nhà có kinh nghiệm tại sài gònnhận làm dịch vụ giúp việc nhà có kinh nghiệm tại sài gòn
nhận làm dịch vụ giúp việc nhà có kinh nghiệm tại sài gònolen578
 
งานคอม
งานคอมงานคอม
งานคอมPeeTheRebel
 
Comparative Radiance Models
Comparative Radiance ModelsComparative Radiance Models
Comparative Radiance ModelsKen Greene
 
Linked In Services training across the EU
Linked In Services training across the EULinked In Services training across the EU
Linked In Services training across the EUNeo Flouri
 
MJSP-Booklet-October2014-libre
MJSP-Booklet-October2014-libreMJSP-Booklet-October2014-libre
MJSP-Booklet-October2014-libreStephanie Assmann
 
Lyman_Reiner_Morrow_Crawford_annalsApril2015
Lyman_Reiner_Morrow_Crawford_annalsApril2015Lyman_Reiner_Morrow_Crawford_annalsApril2015
Lyman_Reiner_Morrow_Crawford_annalsApril2015Maureen Reiner
 
Brain-Inspired Robotics and Neural Dynamics: Lecture 01 (2015)
Brain-Inspired Robotics and Neural Dynamics: Lecture 01 (2015)Brain-Inspired Robotics and Neural Dynamics: Lecture 01 (2015)
Brain-Inspired Robotics and Neural Dynamics: Lecture 01 (2015)Hiroaki Wagatsuma
 
SALAM SHAIK ABDUL NEW Feb 2015
SALAM SHAIK ABDUL NEW Feb 2015SALAM SHAIK ABDUL NEW Feb 2015
SALAM SHAIK ABDUL NEW Feb 2015Salam Shaik Abdul
 
คัพเค้ก
คัพเค้กคัพเค้ก
คัพเค้กcnfook 11
 
Otras formas de crear una página web
Otras formas de crear una página webOtras formas de crear una página web
Otras formas de crear una página webLuisVila99
 

Viewers also liked (20)

nơi nào dịch vụ giúp việc theo giờ uy tín ở hcm
nơi nào dịch vụ giúp việc theo giờ uy tín ở hcmnơi nào dịch vụ giúp việc theo giờ uy tín ở hcm
nơi nào dịch vụ giúp việc theo giờ uy tín ở hcm
 
GlendaSmith2015
GlendaSmith2015GlendaSmith2015
GlendaSmith2015
 
Tidak perlu mucikari
Tidak perlu mucikariTidak perlu mucikari
Tidak perlu mucikari
 
Travel agency in cabo
Travel agency in caboTravel agency in cabo
Travel agency in cabo
 
Texual research.
Texual research.Texual research.
Texual research.
 
ppt on heart
ppt on heartppt on heart
ppt on heart
 
วันสงกรานต์
วันสงกรานต์วันสงกรานต์
วันสงกรานต์
 
nhận làm dịch vụ giúp việc nhà có kinh nghiệm tại sài gòn
nhận làm dịch vụ giúp việc nhà có kinh nghiệm tại sài gònnhận làm dịch vụ giúp việc nhà có kinh nghiệm tại sài gòn
nhận làm dịch vụ giúp việc nhà có kinh nghiệm tại sài gòn
 
งานคอม
งานคอมงานคอม
งานคอม
 
Comparative Radiance Models
Comparative Radiance ModelsComparative Radiance Models
Comparative Radiance Models
 
Linked In Services training across the EU
Linked In Services training across the EULinked In Services training across the EU
Linked In Services training across the EU
 
MJSP-Booklet-October2014-libre
MJSP-Booklet-October2014-libreMJSP-Booklet-October2014-libre
MJSP-Booklet-October2014-libre
 
Lyman_Reiner_Morrow_Crawford_annalsApril2015
Lyman_Reiner_Morrow_Crawford_annalsApril2015Lyman_Reiner_Morrow_Crawford_annalsApril2015
Lyman_Reiner_Morrow_Crawford_annalsApril2015
 
RESUME
RESUMERESUME
RESUME
 
ISA 2015
ISA  2015 ISA  2015
ISA 2015
 
Survey
SurveySurvey
Survey
 
Brain-Inspired Robotics and Neural Dynamics: Lecture 01 (2015)
Brain-Inspired Robotics and Neural Dynamics: Lecture 01 (2015)Brain-Inspired Robotics and Neural Dynamics: Lecture 01 (2015)
Brain-Inspired Robotics and Neural Dynamics: Lecture 01 (2015)
 
SALAM SHAIK ABDUL NEW Feb 2015
SALAM SHAIK ABDUL NEW Feb 2015SALAM SHAIK ABDUL NEW Feb 2015
SALAM SHAIK ABDUL NEW Feb 2015
 
คัพเค้ก
คัพเค้กคัพเค้ก
คัพเค้ก
 
Otras formas de crear una página web
Otras formas de crear una página webOtras formas de crear una página web
Otras formas de crear una página web
 

Similar to Digital search tree

Digital Search Tree
Digital Search TreeDigital Search Tree
Digital Search TreeSM. Aurnob
 
Lec06-CS110 Computational Engineering
Lec06-CS110 Computational EngineeringLec06-CS110 Computational Engineering
Lec06-CS110 Computational EngineeringSri Harsha Pamu
 
Chapter_02_The_Language_of_Bits_Any.pptx
Chapter_02_The_Language_of_Bits_Any.pptxChapter_02_The_Language_of_Bits_Any.pptx
Chapter_02_The_Language_of_Bits_Any.pptxduttnikhil2403
 
01.number systems
01.number systems01.number systems
01.number systemsrasha3
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.pptssuser52a19e
 
Review on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalReview on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalUtkirjonUbaydullaev1
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.pptRAJKUMARP63
 
Digital Fundamental Learning for the Students
Digital Fundamental Learning for the StudentsDigital Fundamental Learning for the Students
Digital Fundamental Learning for the Studentsshaival
 
Number System[HEXADECIMAL].pptx
Number System[HEXADECIMAL].pptxNumber System[HEXADECIMAL].pptx
Number System[HEXADECIMAL].pptxMaheShiva
 
Digital Logic Design.pptx
Digital Logic Design.pptxDigital Logic Design.pptx
Digital Logic Design.pptxAminaZahid16
 

Similar to Digital search tree (20)

Digital Search Tree
Digital Search TreeDigital Search Tree
Digital Search Tree
 
Lec06-CS110 Computational Engineering
Lec06-CS110 Computational EngineeringLec06-CS110 Computational Engineering
Lec06-CS110 Computational Engineering
 
Chapter_02_The_Language_of_Bits_Any.pptx
Chapter_02_The_Language_of_Bits_Any.pptxChapter_02_The_Language_of_Bits_Any.pptx
Chapter_02_The_Language_of_Bits_Any.pptx
 
numbers system
numbers systemnumbers system
numbers system
 
number system
number systemnumber system
number system
 
B tree
B  treeB  tree
B tree
 
UNIT-1_CSA.pdf
UNIT-1_CSA.pdfUNIT-1_CSA.pdf
UNIT-1_CSA.pdf
 
Number system
Number systemNumber system
Number system
 
01.number systems
01.number systems01.number systems
01.number systems
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
Review on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalReview on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and Hexadecimal
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
binary-numbers.ppt
binary-numbers.pptbinary-numbers.ppt
binary-numbers.ppt
 
Digital Fundamental Learning for the Students
Digital Fundamental Learning for the StudentsDigital Fundamental Learning for the Students
Digital Fundamental Learning for the Students
 
b-tree.ppt
b-tree.pptb-tree.ppt
b-tree.ppt
 
Bitwise
BitwiseBitwise
Bitwise
 
Number System[HEXADECIMAL].pptx
Number System[HEXADECIMAL].pptxNumber System[HEXADECIMAL].pptx
Number System[HEXADECIMAL].pptx
 
Digital Logic Design.pptx
Digital Logic Design.pptxDigital Logic Design.pptx
Digital Logic Design.pptx
 
04-logic-gates (1).ppt
04-logic-gates (1).ppt04-logic-gates (1).ppt
04-logic-gates (1).ppt
 

More from Mahmudul Hasan

5 g architecture and application
5 g architecture and application5 g architecture and application
5 g architecture and applicationMahmudul Hasan
 
PLOTTING UNITE STEP AND RAMP FUNCTION IN MATLAB
PLOTTING UNITE STEP AND RAMP  FUNCTION  IN  MATLAB PLOTTING UNITE STEP AND RAMP  FUNCTION  IN  MATLAB
PLOTTING UNITE STEP AND RAMP FUNCTION IN MATLAB Mahmudul Hasan
 
Design pipeline architecture for various stage pipelines
Design pipeline architecture for various stage pipelinesDesign pipeline architecture for various stage pipelines
Design pipeline architecture for various stage pipelinesMahmudul Hasan
 
Elimination of left recursion
Elimination of left recursionElimination of left recursion
Elimination of left recursionMahmudul Hasan
 
গুড়পুকুরের মেলা
গুড়পুকুরের মেলাগুড়পুকুরের মেলা
গুড়পুকুরের মেলাMahmudul Hasan
 
Emergency system AI presentation Using Prolog
Emergency system AI presentation Using PrologEmergency system AI presentation Using Prolog
Emergency system AI presentation Using PrologMahmudul Hasan
 
Bank management system
Bank management systemBank management system
Bank management systemMahmudul Hasan
 
Hospital management system DBMS PROJECT USING APEX 5.04
Hospital management system DBMS PROJECT USING APEX 5.04Hospital management system DBMS PROJECT USING APEX 5.04
Hospital management system DBMS PROJECT USING APEX 5.04Mahmudul Hasan
 

More from Mahmudul Hasan (14)

C Programming Loop
C Programming LoopC Programming Loop
C Programming Loop
 
E commerce Website
E commerce WebsiteE commerce Website
E commerce Website
 
5 g architecture and application
5 g architecture and application5 g architecture and application
5 g architecture and application
 
Car parking system
Car parking systemCar parking system
Car parking system
 
Software company
Software companySoftware company
Software company
 
Avl tree
Avl treeAvl tree
Avl tree
 
PLOTTING UNITE STEP AND RAMP FUNCTION IN MATLAB
PLOTTING UNITE STEP AND RAMP  FUNCTION  IN  MATLAB PLOTTING UNITE STEP AND RAMP  FUNCTION  IN  MATLAB
PLOTTING UNITE STEP AND RAMP FUNCTION IN MATLAB
 
Design pipeline architecture for various stage pipelines
Design pipeline architecture for various stage pipelinesDesign pipeline architecture for various stage pipelines
Design pipeline architecture for various stage pipelines
 
Elimination of left recursion
Elimination of left recursionElimination of left recursion
Elimination of left recursion
 
2 bit alu
2 bit alu2 bit alu
2 bit alu
 
গুড়পুকুরের মেলা
গুড়পুকুরের মেলাগুড়পুকুরের মেলা
গুড়পুকুরের মেলা
 
Emergency system AI presentation Using Prolog
Emergency system AI presentation Using PrologEmergency system AI presentation Using Prolog
Emergency system AI presentation Using Prolog
 
Bank management system
Bank management systemBank management system
Bank management system
 
Hospital management system DBMS PROJECT USING APEX 5.04
Hospital management system DBMS PROJECT USING APEX 5.04Hospital management system DBMS PROJECT USING APEX 5.04
Hospital management system DBMS PROJECT USING APEX 5.04
 

Recently uploaded

HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacingjaychoudhary37
 

Recently uploaded (20)

HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacing
 

Digital search tree