Блог пользователя djdibs

Автор djdibs, история, 4 года назад, По-английски

Hello Guys,

I am a beginner in the Competitive Programming world and am using java, so can anyone help me so as to how to learn/master the language, what resources should be used any books, etc.

Thanks and regards, See you in the arena.

  • Проголосовать: нравится
  • -6
  • Проголосовать: не нравится

»
4 года назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

I am describing some things which I consider while solving problems with Java:

a). Use BufferedReader class or user defined FastReader class for fast I/O, instead of using Scanner class. You can see here for more info.

b). Prefer Java 8 over Java 11. Java 8 has slightly better throughput than Java 11. Still you can use anything, it won't affect your performance drastically.

c). Most importantly, master collection framework in Java. it helps you to use and manipulate data structures efficiently.

d). Use PrintWriter class for producing output in the console. It is much faster then the general System.out.print().

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +1 Проголосовать: не нравится

    Thanks for the information.

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Huu bro i also had seen fast scanner used by second thread can you explain this

    • »
      »
      »
      3 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      It is just a custom template for fast I/O. It uses BufferedReader class but it is a bit different from defined BufferedReader class. All the functions for FastReader class are exactly same as normal Scanner input but because it uses BufferedReader class in it's implementation, it's execution is fast as compared to Scanner.

  • »
    »
    4 месяца назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Hey,

    I have been using Java for quite a while, dont really know if I have mastered JCF.

    Can you tell how to "master" it?

»
4 года назад, # |
  Проголосовать: нравится +9 Проголосовать: не нравится

I suggest you just start off by learning the minimum required basics, and learning other things as and when needed. Because there are many optimizations in Java that you won't learn in any programming course but only by experiencing them yourselves.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится +10 Проголосовать: не нравится

SecondThread has excellent video about Java setup for competitive programming. link

»
4 года назад, # |
  Проголосовать: нравится +37 Проголосовать: не нравится

switch to C++, I used java for 2 years and C++ is a lot better

»
3 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

if you want, you can use my code:

code
»
3 года назад, # |
Rev. 2   Проголосовать: нравится +5 Проголосовать: не нравится

tips to get better at java

1.u dont,use c++ instead

»
3 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

CF community has become so condescending these days, some person is new to CP and is asking for help/resources. Yet, I see 6 down-votes in this blog.

»
4 месяца назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

are you still alive brother