Part10DataStructure

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ธ.ค. 2024

ความคิดเห็น • 53

  • @malayalivlogs2950
    @malayalivlogs2950 3 ปีที่แล้ว +6

    ആദ്യമായിട്ട് ഞാൻ ഉറക്കം വരാതെ full video interestൽ കണ്ടു..

  • @raviganeshm3772
    @raviganeshm3772 3 ปีที่แล้ว +8

    public class Main
    {
    public static String change(String str) {
    int count = 1;
    String newString = "";
    for(int i=1;i

    • @raviganeshm3772
      @raviganeshm3772 3 ปีที่แล้ว +2

      def change(s):
      d = {}
      newString=""
      for i in s:
      if i not in d:
      d[i] = 1
      else:
      d[i]+=1
      for key, val in d.items():
      newString = newString + str(val) + key
      return newString
      print(change("AAABBC"))
      Time complexity = O(n)
      Space complexity = O(n)

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว

      congrats 🥳
      you’re the winner 👏🏼
      please send your photo and account details to 7034395811

  • @hishamahammmedkm1936
    @hishamahammmedkm1936 3 ปีที่แล้ว +4

    I like chaii more than content

  • @bibinmidhila1783
    @bibinmidhila1783 3 ปีที่แล้ว +2

    Ethupolathe valuable aayittulla challenges pratheekshikkunnu

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว

      sure 💪🏼
      check out our plans for 2021
      th-cam.com/video/BRWBvQxklDU/w-d-xo.html

  • @BroForYou
    @BroForYou 3 ปีที่แล้ว +2

    Nikhil Bro and team 🥳🥳🥳🥳

  • @MrAmeer27
    @MrAmeer27 3 ปีที่แล้ว +9

    ഇങ്ങനെ പോയാമതി മാറ്റം വരുത്തണ്ട നിങ്ങൾ real ക്ലാസ് എടുക്കുന്ന പോലെ ആണ് നിങ്ങൾ ക്ലാസ് എടുക്കുന്നത് നിങ്ങളുടെ ചളികളും ഞങ്ങൾ ആസ്വദിച്ചിട്ടാണ് ക്ലാസ് കേൾക്കുന്നത് , തമഷകല് ഇല്ലാതെ ക്ലാസ് എടുത്താൽ കുറച്ചു kazinjal മടുപ്പ് തോന്നും

  • @maranan7771
    @maranan7771 ปีที่แล้ว +1

    in Java Script o(n)st
    function shafin(str) {
    let count = 1;
    let result = '';
    for (let i = 0; i < str.length; i++) {
    if (str.charAt(i) === str.charAt(i + 1)) {
    count++;
    } else {
    result += count + str.charAt(i)+'
    ';
    count = 1;
    }
    }
    console.log(result);
    }
    shafin('aaabbc')

  • @akashp4863
    @akashp4863 3 ปีที่แล้ว +1

    A mutable object can be changed after it's created, and an immutable object can't.

  • @Tourist-hj1ib
    @Tourist-hj1ib 3 ปีที่แล้ว +4

    public class Main12 {
    public static void equator(String str) {
    int count=1;
    StringBuilder st2 =new StringBuilder();
    int i=0;
    char[] charArray=str.toCharArray();
    while(i

  • @ronyjoseph7868
    @ronyjoseph7868 3 ปีที่แล้ว +1

    Stack quee linked list, double linked ithokke c yil ulla data structures name alle, java, python, c# avideyum e same name thanne aano indakuka, atho oro language inum avrdutheya data structures indo. Onn elupathil xplain cheyyamo

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว

      Ithonnum language specific alla. Ella language ilun cheyyan pattum

  • @rasheedthayyil9234
    @rasheedthayyil9234 3 ปีที่แล้ว +1

    Chali uyir😎

  • @JobinSelvanose
    @JobinSelvanose 3 ปีที่แล้ว +4

    ellarum ethentha evide comment cheythu natikune. *CROSSROADS* challi store alla pakka content center for mallus anu. pinney challi oru bonus ayi tharunu ene ullu challi kanan mathram varanda (challiyadi is not and high income skill Lol) so skills set chey kude challiyadi kelk

  • @muhammedswalih4480
    @muhammedswalih4480 3 ปีที่แล้ว

    String arrayude value aayittu str. Length() assign cheyyumbol error varunnu. Anyone can help me...?

  • @uv1906
    @uv1906 3 ปีที่แล้ว

    ❤️❤️❤️❤️

  • @GOODIESS
    @GOODIESS 3 ปีที่แล้ว +2

    Chaliyadi illand sugamillaannu

  • @abhilashvm9291
    @abhilashvm9291 3 ปีที่แล้ว +4

    Class maathram aayal bore aayirikkum...
    Fun koodi venam

  • @adharshm6808
    @adharshm6808 3 ปีที่แล้ว

    C++11 there is a type for string as in the case of Java.

  • @ramsankar4319
    @ramsankar4319 2 ปีที่แล้ว

    input: AAABBCDD
    output : 3A2B1C2D
    public class CountCharacter {
    public void countChar(String text){
    int i = 0;
    String s = "";
    while(i < text.length()){
    int k = 1;
    while(i + k < text.length() && text.charAt(i) == text.charAt(i+k)){
    k++;
    }
    s = s + k + "";
    s = s + text.charAt(i);
    i = i + k;
    }
    System.out.println(s);
    }
    public static void main(String[] args) {
    CountCharacter inString = new CountCharacter();
    inString.countChar("AAABBCDD");
    }
    }

  • @ameen1110
    @ameen1110 3 ปีที่แล้ว +1

    Part 8 nte cash award enthaayi🤔

  • @sandeepputhalath3922
    @sandeepputhalath3922 2 ปีที่แล้ว

    Hey ,can anyone please tell me if this code is good or not.
    I am getting the desired output .But ,I don't feel like the code is good.
    Hope to get a reply.
    public class sample {

    public static String encode(String str) {
    char[] charArray = str.toCharArray();
    String newString ="";
    int count = 0;
    char tempChar = charArray[0];

    for(char val : charArray) {
    if(tempChar == val) {
    count++;
    }
    else {
    newString += String.valueOf((char)(count+'0'));
    newString += String.valueOf(tempChar);
    tempChar = val;
    count = 1;
    }
    }
    newString += String.valueOf((char)(count+'0'));
    newString += String.valueOf(tempChar);
    return newString;
    }

    public static void main(String ar[]) {

    System.out.println(encode("abbbbbccccddd"));
    }

    }

  • @muhammadramzy6403
    @muhammadramzy6403 3 ปีที่แล้ว

    const setChali = true

  • @sebinsaji9573
    @sebinsaji9573 3 ปีที่แล้ว +1

    Chali venam

  • @mohammed-rahil
    @mohammed-rahil 3 ปีที่แล้ว

    Chali Chali alallo?

  • @hishamahammmedkm1936
    @hishamahammmedkm1936 3 ปีที่แล้ว +1

    Avan vannu

  • @rayyanrasheed8010
    @rayyanrasheed8010 3 ปีที่แล้ว +5

    Ayyo chali veenam tto illenkil oru sukam poora just like only studying no entertainment

  • @akashp4863
    @akashp4863 3 ปีที่แล้ว

    conversation must Bigile. ellenki verum sada tutorial avoole

  • @fadhilsaheer8877
    @fadhilsaheer8877 3 ปีที่แล้ว +1

    chali venda enno 😭 this is cheating cinema style cheating 😥

  • @PriyanjithN
    @PriyanjithN ปีที่แล้ว

    occurence of alphabets numbered
    public class ChangeToNumbersOccuingAlphabet {

    public static String numberOfAlphabets(String str) {
    int count=1;
    String numberString="";
    for(int i=0;i

  • @siyahulhaq7062
    @siyahulhaq7062 3 ปีที่แล้ว

    First

  • @govindrajeesh3832
    @govindrajeesh3832 3 ปีที่แล้ว +1

    Ithu matthi serious aayal bore aayirikum.

  • @john-bq4pm
    @john-bq4pm 3 ปีที่แล้ว +1

    time Complexity=O(n);
    space Complexity=O(n);
    public class SameString {
    public static String newString(String str){
    int letterCount=1;
    char letterString;
    char[] charArray=new char[str.length()];
    for(int i=0;i

  • @ajg3951
    @ajg3951 3 ปีที่แล้ว

    class NoOfOccurenceOfCharacters {
    static final int MAX_CHAR = 256;
    static void getOccuringChar(String str)
    {
    int count[] = new int[MAX_CHAR];
    int len = str.length();
    for (int i = 0; i < len; i++)
    count[str.charAt(i)]++;
    // Create an array of given String size
    char ch[] = new char[str.length()];
    for (int i = 0; i < len; i++) {
    ch[i] = str.charAt(i);
    int find = 0;
    for (int j = 0; j

  • @adarsh154
    @adarsh154 3 ปีที่แล้ว +1

    O(n)TS
    public static string DuplicateCharCounter( string str){
    int count = 1;
    StringBuilder st = new StringBuilder();
    for(int i = 1;i

    • @favazabdulrasheed58
      @favazabdulrasheed58 3 ปีที่แล้ว +1

      Njan ith cheythu nokki appo str[i]nte aa bhaagathu error und
      Ath string aan .Njan cheythath arrayude operation aanenn vayichappo mansilayi

  • @litebook1951
    @litebook1951 3 ปีที่แล้ว +1

    ആ ചിരി ഒന്ന് കുറക്കോ @nikhil sir

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว +2

      അത് മാത്രം പറയരുത് 😫

  • @vinuviswanath1728
    @vinuviswanath1728 3 ปีที่แล้ว

    public class CountAndDisplayCharacters {
    public static void main(String[] args) {
    String input = "AABBBCCCCDEEEAA";
    countAndPrintCharacters(input);
    }
    private static void countAndPrintCharacters(String input) {
    char prev = 0;
    int count = 1;
    String pattern = "";
    for (int i = 0; i < input.length(); i++) {
    if (i == 0) {
    prev = input.charAt(i);
    } else {
    if (input.charAt(i) == prev) {
    count++;
    } else {
    pattern = pattern+prev+count;
    prev = input.charAt(i);
    count = 1;
    }
    }
    }
    pattern = pattern+prev+count;
    System.out.println(pattern);
    }
    }
    O(n)ST

  • @shirazmuhd3231
    @shirazmuhd3231 3 ปีที่แล้ว +3

    Challi onnum Venda. Padippicha mathi