Notes![what is notes.io? What is notes.io?](/theme/images/whatisnotesio.png)
![]() ![]() Notes - notes.io |
public class SLL<T> extends EXP6_47 {
private EXP6_47 head, tail;
public SLL(){
head=tail=null;
}
public boolean Empty1(){
if(head==null){
System.out.println("List is EMPTY");
}
else if (head != null){
System.out.println("List is not EMPTY");
}
return head==null;
}
public boolean Empty(){
return head==null;
}
public void AddHead(T el){
head = new EXP6_47<T>(el,head);
if(tail==null)
tail=head;
}
public void AddTail(T el){
if(Empty()){
head=tail=new EXP6_47<T>(el);
}
else{
tail.next=new EXP6_47<T>(el);
tail=tail.next;
}
}
public T RemoveTail(){
if(Empty())
return null;
T el=(T) head.info;
if(head==tail)
head=tail=null;
else{
EXP6_47<T> p;
for(p=head;p.next!=tail;p=p.next);
tail=p;
tail.next=null;
}
return el;
}
public T RemoveHead(){
if(Empty())
return null;
T el = (T) head.info;
if(head==tail)
head=tail=null;
else
head = head.next;
return el;
}
public String printAll(){
EXP6_47<T> p;
String s="";
for(p=head;p!=null;p=p.next)
s=s+p.info.toString()+" ";
return s;
}
public EXP6_47<T> getNode(T el){
EXP6_47<T> p=head;
while(p!=null && p.info!=el)
p=p.next;
return p;
}
public boolean isInList(T el){
return getNode(el) !=null;
}
public void MakeNull(){
head=null;
}
public void InsertAfterNode(T el, EXP6_47 <T> ptr){
if(ptr !=null){
if(tail==ptr)
AddTail(el);
else
ptr.next = new EXP6_47<T>(el,ptr.next);
}
}
public void InsertAfterElt(T elOld,T elNew){
EXP6_47<T> p;
p = getNode(elOld);
if(p!=null)
InsertAfterNode(elNew, p);
}
public EXP6_47<T> getNodeb(T el){
EXP6_47<T>p=head,r=head.next;
for(p=head,r=head.next;r!=null && r.info != el;p=p.next,r=r.next);
return p;
}
public void InsertBeforeNode(T el, EXP6_47<T> ptr){
if(ptr !=null){
if(head==ptr){
AddHead(el);
}
else{
ptr.next = new EXP6_47<T>(el,ptr.next);
} }
}
public void InsertBeforeElt(T elOld,T elNew){
EXP6_47<T> p;
p = getNodeb(elOld);
if(elOld == head.info)AddHead(elNew);
if(p!=null)InsertAfterNode(elNew,p);
}
}
![]() |
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team