Jump to content

Alright The Arrogant

Member
  • Posts

    50
  • Joined

  • Last visited

About Alright The Arrogant

  • Birthday 10/10/1993

Profile Information

  • Gender
    Male
  • Location
    Indonesia
  • Hobbies
    C++,Oracle DB, HTML, CSS

Previous Fields

  • Real name
    Nicky Puff

Recent Profile Visitors

809 profile views

Alright The Arrogant's Achievements

Apprentice

Apprentice (3/14)

5

Reputation

  1. Alright is a Arrogant Admin. I really hate people who swagger rank.

    1. Show previous comments  14 more
    2. Alright The Arrogant

      Alright The Arrogant

      @carn : sorry for that, bro. I talked like he did

      @alright : i have 13 accounts left. It't not big problem us. The big probelm is you can't defeat me

      @rallye : i have tried to be mature and done. What about you ? Done or still crying and angry ? Watch spongebob. It's good for kid education, especially for you, son.

    3. HEJMENAMEIZDEJTONA

      HEJMENAMEIZDEJTONA

      I guess the one who's crying is you now. ''Crying'' is in your dictionairy,the dictionairy of an immature child.

    4. Alright The Arrogant

      Alright The Arrogant

      Unfortunately, you are wrong. Buy a mirror and say that. It will be true. Because, it's true life Bahahahaha

      Kuek..kuek..kuek... excuse me, Rallye's ducks wanna crying

  2. Do you know what backsound in this video tutorial ? I like this backsound. Help me, please. This is the video

    1. HEJMENAMEIZDEJTONA

      HEJMENAMEIZDEJTONA

      Try use Shazam if you have a portable device

    2. Alright The Arrogant
    3. DutchMan

      DutchMan

      Ok , cillo the name of the song is autorap86 by Gusty & TcckI & Gus L'enflure , say thank to rallye and shazam

  3. Happy New Year 2015 ||||||

  4. Be Aware. thepiratebay.cr is Fake. Malware has injected on fake torrent file. BE AWARE

  5. I forgot my old friend. He is Aymen. Aymen was banned because insult admin. http://rpg.b-zone.ro/players/general/Aymen | Will he online to play again ? or Become Anonymously ? Aymen...Aymen :(((

  6. I can't play RPG 3 because My PC is lag when play. I don't know why, it's so sad for me :(((

    1. iCatalin

      iCatalin

      It's not you. It's everyone, it's unplayeable now...

  7. Assassin's Creed Rogue released at 11 November 2014, but Assassin's Creed Unity at 14 November 2014. SKiDROW has uploaded full installation with size 40GB in Kick#ss torrent. We need the installer. Installer will smaller than game full installation. https://www.ubisoft.com/en-GB/game/assassins-creed-unity/ Official Site for Assassin's Creed Unity https://www.ubisoft.com/en-GB/game/assassins-creed-rogue/ Official Site for Assassin's Creed Rogue CMIIW
  8. Nume: CiLLO Level: 10 RPG Bar sau poza cu [/stats] : http://i.imgur.com/QD4KsmW.png Facţiunea din faci parte: Civilian Am citit şi lua la cunoştinţă regulile prezentate în primul post al topicului: Yes Alte precizări: I can speak english language very well. Best regards.
  9. @, Nice question. So, if you wanna include a library, basicly you must use <library>. But, when you want include a header or the library which not include on C++ library, you must use "yourlibrary". "...." -> This is using for your own library or header <...> -> This is using for C++ library or basic library e.g iostream, math, stdlib, and so on. @@5061756C, Share what do you know about singly link list
  10. Assassin's Creed Unity release at 14.11.2014 in Official Site, but Skidrow has uploaded 40 GB that game 20 hours ago. LOL Good Job, Skidrow ! :))))))

    1. Gisele

      Gisele

      How is it on the PC? Is the graphics too heavy? I wish I can play it but I don't have XBox One or PS4. I'm scared to play it on my laptop, lol.

    2. Alright The Arrogant

      Alright The Arrogant

      IT's very heavy, gisele

      I have Core i5 3.00 GHz

      AMD Radeon 2.6 GB

      VGA 4gb

      It's very lag, i must set graphic option to be Low LOLOL

  11. @, If you have some constraints, PM or put it here. Don't forget to change if-then-else to be switch-case. Thx a lot
  12. -- Nume: CiLLO -- Level: 10 -- RPG Bar sau poza cu [/stats] : -- Facţiunea din faci parte: Civilian -- Am citit şi lua la cunoştinţă regulile prezentate în primul post al topicului: Yes -- Alte precizări: I can speak english language. My /stats didn't show when i add reply. Sorry. I don't know what happen. Best regards.
  13. @@CoSmE, Thanks for having time to read my topic. Honestly, with using switch-case or if-then-else is very different. If-then-else is use for logic operator such as < (less than), > (greater than), <= (less than or equal to), and so on. But, Switch-case is use for comparison between first variabel with other variabel. And, you are right CoSmE, i should use switch-case because that's not logic operator. Thx a lot, bro !
  14. I will make a topic about Singly Link List. This method is important for Queue and Stack. Let me try the best for this tutorial. We need 2 files such as, 1. .CPP (Main) 2. .h (Header) 1. main.cpp #include <iostream> #include "list.h" using namespace std; int main() { list l; int menu; bool exit = false; l.first = nil; list *li = &l; while(exit==false) { cout<<"Menu :\n"; cout<<"1. insert first\n"; cout<<"2. insert last\n"; cout<<"3. delete first\n"; cout<<"4. delete last\n"; cout<<"5. view data\n"; cout<<"6. search\n"; cout<<"7. exit\n"; cout<<"Menu :";cin>>menu; if(menu==1){ address p = new elementList; cout<<"Input New Data :";cin>>info(p); p->next = nil; insertFirst(li,p); }else if(menu==2){ address p = new elementList; cout<<"Input Data :";cin>>info(p); p->next = nil; insertLast(li,p); }else if(menu==3){ deleteFirst(li); }else if(menu==4){ deleteLast(li); }else if(menu==5){ traversal(li); }else if(menu==6){ int x; cout<< "Input Data for Search : ";cin>>x; searching(li,x); }else if(menu==7){ exit = true; } } return 0; } 2. List.h #ifndef LIST_H_INCLUDED #define LIST_H_INCLUDED #define nil NULL #define info(p) (p)->info #define next(p) (p)->next #define first(l) ((l).first) #define root(l) (l)->first #include <iostream> using namespace std; typedef struct elementList *address; struct elementList{ int info; address next; }; struct list{ address first; }; void insertFirst(list *l, address p) { next(p) = first(*l); //cout<<first(*l)<<endl; first(*l)= p; } void insertLast(list *l, address p) { if(first(*l)==nil){ insertFirst(l,p); }else{ address q = first(*l); while(next(q)!=nil){ q=next(q); } next(q)=p; } } void traversal(list *l) { address p = first(*l); if(first(*l)==nil){ cout<<"Empty List\n"; }else{ while(p!=nil){ cout<<info(p)<<endl; p = next(p); } } } void deleteFirst(list *l) { if(first(*l)==nil){ cout<<"Empty list\n"; }else{ address p =first(*l); first(*l)=next(p); next(p)=nil; delete(p); cout<<"First data has removed\n"; } } void deleteLast(list *l) { if(first(*l)==nil){ cout<<"empty list\n"; }else{ address prec; address p =first(*l); while(next(p)!=nil){ prec = p; p = next(p); } //cout<<next(prec); next(prec)=nil; delete(p); cout<< "Last data has removed\n"; } } void searching(list *l,int x) { address p = first(*l); bool found = false; int n=0; while(found == false && p!=nil) { if(info(p)==x){ found=true; } n++; p=next(p); } if(found==true){ cout<< "Data found at-"<<n<<endl; }else{ cout<< "NO data\n"; } } We have 7 menus, insert first, insert last, delete first, delete last, view data, search, and exit. In the Delete method, we need 2 variabel. First variabel for First(*L) and the second is next of address. In the Insert method , we only need one variabel that is parameter input. So, the user will input data and we have made a procedure before for process this parameter. View data is show your all data which you input such as first or last, this method will sort as you did before. Search is for searching data what you want. It will show where is the location, first input, second, third , and so on. I can't give you more. But i will answer your question. I hope you like this tutorial. I can't speak romanian language. Thanks a lot #endif // LIST_H_INCLUDED
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.