-
Notifications
You must be signed in to change notification settings - Fork 0
/
phone_screen.rtf
41 lines (40 loc) · 1 KB
/
phone_screen.rtf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{\rtf1\ansi\ansicpg1252\cocoartf1404\cocoasubrtf460
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\margl1440\margr1440\vieww10800\viewh8400\viewkind0
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0
\f0\fs24 \cf0 \
Node right;\
int item;\
\
Node(int x)\
\{\
left = null;\
right = null;\
item = x;\
\}\
\}\
\
public void insert(int i)\
\{\
if (root == null)\
\{\
root = new Node(i)\
\}\
\
else\
\{\
Node s = root;\
\
while (s != null)\
\{\
if (s.item < i)\
\{\
if (s.right == null)\
\{\
s.right = new Node(i);\
return;\
\}\
else\
\{\
}