Android NDK Low performanceEPUB reader for AndroidAsyncTask, Android, and SQLSmall Android AsyncTask projectAndroid close running appsRefactoring Android fragmentsPerformance of speech enhancement code for Android appStyling android widgets programmaticallyAndroid utils classLow C performance for TSP heuristicAndroid mini adventure

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

Can I make popcorn with any corn?

Possibly bubble sort algorithm

Patience, young "Padovan"

Why don't electron-positron collisions release infinite energy?

When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?

Why CLRS example on residual networks does not follows its formula?

A function which translates a sentence to title-case

Email Account under attack (really) - anything I can do?

TGV timetables / schedules?

Dragon forelimb placement

How is it possible for user to changed after storage was encrypted? (on OS X, Android)

How do I create uniquely male characters?

How can the DM most effectively choose 1 out of an odd number of players to be targeted by an attack or effect?

Is the language <p,n> belongs to NP class?

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?

Draw simple lines in Inkscape

How can I hide my bitcoin transactions to protect anonymity from others?

Why don't electromagnetic waves interact with each other?

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

Is it possible to do 50 km distance without any previous training?

Suffixes -unt and -ut-

What typically incentivizes a professor to change jobs to a lower ranking university?

What is the command to reset a PC without deleting any files



Android NDK Low performance


EPUB reader for AndroidAsyncTask, Android, and SQLSmall Android AsyncTask projectAndroid close running appsRefactoring Android fragmentsPerformance of speech enhancement code for Android appStyling android widgets programmaticallyAndroid utils classLow C performance for TSP heuristicAndroid mini adventure






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0












$begingroup$


I am trying to write a NDK program for quicksorting an array. However, in my benchmarks C is doing consistently worse than Java, as indicated by my results:



Java 1190625
C 1809218



Java 895104
C 1372656



Java 1104792
C 1491198



Java 10766875
C 14929115



Java 9200104
C 9770833



Java 5740782
C 9177135



Could someone help me?



package com.example.bill.androidredblacktree;

import android.content.Intent;
import android.net.Uri;
import android.os.Debug;
import android.support.v4.content.FileProvider;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.View;

import java.util.Arrays;
import java.util.Map;
import java.util.Random;
import java.util.concurrent.ThreadLocalRandom;

public class QuicksortBenchmarks extends AppCompatActivity


public native void QuicksortCPassArray(int a[]);

@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_quicksort_benchmarks);


int n1[] = 2000,20000;
int j1 = 0;
for (j1 = 0; j1 < n1.length; j1++)
int counts=0;
for (int k1=0;k1<3;k1++)
int i, n = n1[j1];
long startTime, estimatedTime, estimatedTime1;

int a[];
a = new int[n];
for (i = 0; i < n; i++)
a[i] = i;


int z, j;
Random rnd = ThreadLocalRandom.current();
for (j = n - 1; j > 0; j--)
z = rnd.nextInt(j + 1);
swap(a, z, j);


int b[]= Arrays.copyOf(a,a.length);

startTime = System.nanoTime();
quicksort(a, 0, n - 1);
estimatedTime = System.nanoTime() - startTime;
System.out.print("Java " + estimatedTime + 'n');

startTime = System.nanoTime();
QuicksortCPassArray(b);
estimatedTime1 = System.nanoTime() - startTime;
System.out.print("C " + estimatedTime1 + 'n');













private static void quicksort(int a[], int x, int y)

int q;
if (x < y)
q = partition(a, x, y);
quicksort(a, x, q - 1);
quicksort(a, q + 1, y);



private static int partition(int a[], int x, int y)
int temp = a[y];
int i = x - 1;
int j;
for (j = x; j <= y - 1; j++)
if (a[j] <= temp)
i++;
swap(a, i, j);


swap(a, i + 1, y);
return (i + 1);


private static void swap(int a[], int i, int j)
int t = a[i];
a[i] = a[j];
a[j] = t;


private int[] shuffleArray(int a[])
int i;
for (i = 0; i < a.length; i++)
a[i] = i;


int z;
Random rnd = ThreadLocalRandom.current();
for (int j = a.length - 1; j > 0; j--)
z = rnd.nextInt(j + 1);
swap(a, z, j);

return a;





#include <jni.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

void quicksort(jint *a, jint x, jint y);

jint partition(jint *a, jint x, jint y);

void swap(jint *a, jint *b);


JNIEXPORT void JNICALL
Java_com_example_bill_androidredblacktree_QuicksortBenchmarks_QuicksortCPassArray(
JNIEnv *env,
jobject this,
jintArray arr)

jint *c_array = (*env)->GetIntArrayElements(env, arr, 0);

jint n = (*env)->GetArrayLength(env, arr);

quicksort(c_array, 0, n - 1);

(*env)->ReleaseIntArrayElements(env, arr, c_array, 0);





void quicksort(jint *a, jint x, jint y)
jint q;
if (x < y)
q = partition(a, x, y);
quicksort(a, x, q - 1);
quicksort(a, q + 1, y);




jint partition(jint *a, jint x, jint y)
jint temp = *(a + y);
jint i = x - 1;
jint j;
for (j = x; j <= y - 1; j++)
if (*(a + j) <= temp)
i++;
jint temp1 = *(a + i);
*(a + i) = *(a + j);
*(a + j) = temp1;
//swap(&a[i], &a[j]);


jint temp2 = *(a + i + 1);
*(a + i + 1) = *(a + y);
*(a + y) = temp2;
//swap(&a[i + 1], &a[y]);
return (i + 1);



void swap(jint *a, jint *b)
jint temp = *a;
*a = *b;
*b = temp;










share|improve this question







New contributor




Bill is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$


















    0












    $begingroup$


    I am trying to write a NDK program for quicksorting an array. However, in my benchmarks C is doing consistently worse than Java, as indicated by my results:



    Java 1190625
    C 1809218



    Java 895104
    C 1372656



    Java 1104792
    C 1491198



    Java 10766875
    C 14929115



    Java 9200104
    C 9770833



    Java 5740782
    C 9177135



    Could someone help me?



    package com.example.bill.androidredblacktree;

    import android.content.Intent;
    import android.net.Uri;
    import android.os.Debug;
    import android.support.v4.content.FileProvider;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.support.v7.widget.Toolbar;
    import android.util.Log;
    import android.view.View;

    import java.util.Arrays;
    import java.util.Map;
    import java.util.Random;
    import java.util.concurrent.ThreadLocalRandom;

    public class QuicksortBenchmarks extends AppCompatActivity


    public native void QuicksortCPassArray(int a[]);

    @Override
    protected void onCreate(Bundle savedInstanceState)
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_quicksort_benchmarks);


    int n1[] = 2000,20000;
    int j1 = 0;
    for (j1 = 0; j1 < n1.length; j1++)
    int counts=0;
    for (int k1=0;k1<3;k1++)
    int i, n = n1[j1];
    long startTime, estimatedTime, estimatedTime1;

    int a[];
    a = new int[n];
    for (i = 0; i < n; i++)
    a[i] = i;


    int z, j;
    Random rnd = ThreadLocalRandom.current();
    for (j = n - 1; j > 0; j--)
    z = rnd.nextInt(j + 1);
    swap(a, z, j);


    int b[]= Arrays.copyOf(a,a.length);

    startTime = System.nanoTime();
    quicksort(a, 0, n - 1);
    estimatedTime = System.nanoTime() - startTime;
    System.out.print("Java " + estimatedTime + 'n');

    startTime = System.nanoTime();
    QuicksortCPassArray(b);
    estimatedTime1 = System.nanoTime() - startTime;
    System.out.print("C " + estimatedTime1 + 'n');













    private static void quicksort(int a[], int x, int y)

    int q;
    if (x < y)
    q = partition(a, x, y);
    quicksort(a, x, q - 1);
    quicksort(a, q + 1, y);



    private static int partition(int a[], int x, int y)
    int temp = a[y];
    int i = x - 1;
    int j;
    for (j = x; j <= y - 1; j++)
    if (a[j] <= temp)
    i++;
    swap(a, i, j);


    swap(a, i + 1, y);
    return (i + 1);


    private static void swap(int a[], int i, int j)
    int t = a[i];
    a[i] = a[j];
    a[j] = t;


    private int[] shuffleArray(int a[])
    int i;
    for (i = 0; i < a.length; i++)
    a[i] = i;


    int z;
    Random rnd = ThreadLocalRandom.current();
    for (int j = a.length - 1; j > 0; j--)
    z = rnd.nextInt(j + 1);
    swap(a, z, j);

    return a;





    #include <jni.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>

    void quicksort(jint *a, jint x, jint y);

    jint partition(jint *a, jint x, jint y);

    void swap(jint *a, jint *b);


    JNIEXPORT void JNICALL
    Java_com_example_bill_androidredblacktree_QuicksortBenchmarks_QuicksortCPassArray(
    JNIEnv *env,
    jobject this,
    jintArray arr)

    jint *c_array = (*env)->GetIntArrayElements(env, arr, 0);

    jint n = (*env)->GetArrayLength(env, arr);

    quicksort(c_array, 0, n - 1);

    (*env)->ReleaseIntArrayElements(env, arr, c_array, 0);





    void quicksort(jint *a, jint x, jint y)
    jint q;
    if (x < y)
    q = partition(a, x, y);
    quicksort(a, x, q - 1);
    quicksort(a, q + 1, y);




    jint partition(jint *a, jint x, jint y)
    jint temp = *(a + y);
    jint i = x - 1;
    jint j;
    for (j = x; j <= y - 1; j++)
    if (*(a + j) <= temp)
    i++;
    jint temp1 = *(a + i);
    *(a + i) = *(a + j);
    *(a + j) = temp1;
    //swap(&a[i], &a[j]);


    jint temp2 = *(a + i + 1);
    *(a + i + 1) = *(a + y);
    *(a + y) = temp2;
    //swap(&a[i + 1], &a[y]);
    return (i + 1);



    void swap(jint *a, jint *b)
    jint temp = *a;
    *a = *b;
    *b = temp;










    share|improve this question







    New contributor




    Bill is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.







    $endgroup$














      0












      0








      0





      $begingroup$


      I am trying to write a NDK program for quicksorting an array. However, in my benchmarks C is doing consistently worse than Java, as indicated by my results:



      Java 1190625
      C 1809218



      Java 895104
      C 1372656



      Java 1104792
      C 1491198



      Java 10766875
      C 14929115



      Java 9200104
      C 9770833



      Java 5740782
      C 9177135



      Could someone help me?



      package com.example.bill.androidredblacktree;

      import android.content.Intent;
      import android.net.Uri;
      import android.os.Debug;
      import android.support.v4.content.FileProvider;
      import android.support.v7.app.AppCompatActivity;
      import android.os.Bundle;
      import android.support.v7.widget.Toolbar;
      import android.util.Log;
      import android.view.View;

      import java.util.Arrays;
      import java.util.Map;
      import java.util.Random;
      import java.util.concurrent.ThreadLocalRandom;

      public class QuicksortBenchmarks extends AppCompatActivity


      public native void QuicksortCPassArray(int a[]);

      @Override
      protected void onCreate(Bundle savedInstanceState)
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_quicksort_benchmarks);


      int n1[] = 2000,20000;
      int j1 = 0;
      for (j1 = 0; j1 < n1.length; j1++)
      int counts=0;
      for (int k1=0;k1<3;k1++)
      int i, n = n1[j1];
      long startTime, estimatedTime, estimatedTime1;

      int a[];
      a = new int[n];
      for (i = 0; i < n; i++)
      a[i] = i;


      int z, j;
      Random rnd = ThreadLocalRandom.current();
      for (j = n - 1; j > 0; j--)
      z = rnd.nextInt(j + 1);
      swap(a, z, j);


      int b[]= Arrays.copyOf(a,a.length);

      startTime = System.nanoTime();
      quicksort(a, 0, n - 1);
      estimatedTime = System.nanoTime() - startTime;
      System.out.print("Java " + estimatedTime + 'n');

      startTime = System.nanoTime();
      QuicksortCPassArray(b);
      estimatedTime1 = System.nanoTime() - startTime;
      System.out.print("C " + estimatedTime1 + 'n');













      private static void quicksort(int a[], int x, int y)

      int q;
      if (x < y)
      q = partition(a, x, y);
      quicksort(a, x, q - 1);
      quicksort(a, q + 1, y);



      private static int partition(int a[], int x, int y)
      int temp = a[y];
      int i = x - 1;
      int j;
      for (j = x; j <= y - 1; j++)
      if (a[j] <= temp)
      i++;
      swap(a, i, j);


      swap(a, i + 1, y);
      return (i + 1);


      private static void swap(int a[], int i, int j)
      int t = a[i];
      a[i] = a[j];
      a[j] = t;


      private int[] shuffleArray(int a[])
      int i;
      for (i = 0; i < a.length; i++)
      a[i] = i;


      int z;
      Random rnd = ThreadLocalRandom.current();
      for (int j = a.length - 1; j > 0; j--)
      z = rnd.nextInt(j + 1);
      swap(a, z, j);

      return a;





      #include <jni.h>
      #include <stdio.h>
      #include <stdlib.h>
      #include <time.h>

      void quicksort(jint *a, jint x, jint y);

      jint partition(jint *a, jint x, jint y);

      void swap(jint *a, jint *b);


      JNIEXPORT void JNICALL
      Java_com_example_bill_androidredblacktree_QuicksortBenchmarks_QuicksortCPassArray(
      JNIEnv *env,
      jobject this,
      jintArray arr)

      jint *c_array = (*env)->GetIntArrayElements(env, arr, 0);

      jint n = (*env)->GetArrayLength(env, arr);

      quicksort(c_array, 0, n - 1);

      (*env)->ReleaseIntArrayElements(env, arr, c_array, 0);





      void quicksort(jint *a, jint x, jint y)
      jint q;
      if (x < y)
      q = partition(a, x, y);
      quicksort(a, x, q - 1);
      quicksort(a, q + 1, y);




      jint partition(jint *a, jint x, jint y)
      jint temp = *(a + y);
      jint i = x - 1;
      jint j;
      for (j = x; j <= y - 1; j++)
      if (*(a + j) <= temp)
      i++;
      jint temp1 = *(a + i);
      *(a + i) = *(a + j);
      *(a + j) = temp1;
      //swap(&a[i], &a[j]);


      jint temp2 = *(a + i + 1);
      *(a + i + 1) = *(a + y);
      *(a + y) = temp2;
      //swap(&a[i + 1], &a[y]);
      return (i + 1);



      void swap(jint *a, jint *b)
      jint temp = *a;
      *a = *b;
      *b = temp;










      share|improve this question







      New contributor




      Bill is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.







      $endgroup$




      I am trying to write a NDK program for quicksorting an array. However, in my benchmarks C is doing consistently worse than Java, as indicated by my results:



      Java 1190625
      C 1809218



      Java 895104
      C 1372656



      Java 1104792
      C 1491198



      Java 10766875
      C 14929115



      Java 9200104
      C 9770833



      Java 5740782
      C 9177135



      Could someone help me?



      package com.example.bill.androidredblacktree;

      import android.content.Intent;
      import android.net.Uri;
      import android.os.Debug;
      import android.support.v4.content.FileProvider;
      import android.support.v7.app.AppCompatActivity;
      import android.os.Bundle;
      import android.support.v7.widget.Toolbar;
      import android.util.Log;
      import android.view.View;

      import java.util.Arrays;
      import java.util.Map;
      import java.util.Random;
      import java.util.concurrent.ThreadLocalRandom;

      public class QuicksortBenchmarks extends AppCompatActivity


      public native void QuicksortCPassArray(int a[]);

      @Override
      protected void onCreate(Bundle savedInstanceState)
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_quicksort_benchmarks);


      int n1[] = 2000,20000;
      int j1 = 0;
      for (j1 = 0; j1 < n1.length; j1++)
      int counts=0;
      for (int k1=0;k1<3;k1++)
      int i, n = n1[j1];
      long startTime, estimatedTime, estimatedTime1;

      int a[];
      a = new int[n];
      for (i = 0; i < n; i++)
      a[i] = i;


      int z, j;
      Random rnd = ThreadLocalRandom.current();
      for (j = n - 1; j > 0; j--)
      z = rnd.nextInt(j + 1);
      swap(a, z, j);


      int b[]= Arrays.copyOf(a,a.length);

      startTime = System.nanoTime();
      quicksort(a, 0, n - 1);
      estimatedTime = System.nanoTime() - startTime;
      System.out.print("Java " + estimatedTime + 'n');

      startTime = System.nanoTime();
      QuicksortCPassArray(b);
      estimatedTime1 = System.nanoTime() - startTime;
      System.out.print("C " + estimatedTime1 + 'n');













      private static void quicksort(int a[], int x, int y)

      int q;
      if (x < y)
      q = partition(a, x, y);
      quicksort(a, x, q - 1);
      quicksort(a, q + 1, y);



      private static int partition(int a[], int x, int y)
      int temp = a[y];
      int i = x - 1;
      int j;
      for (j = x; j <= y - 1; j++)
      if (a[j] <= temp)
      i++;
      swap(a, i, j);


      swap(a, i + 1, y);
      return (i + 1);


      private static void swap(int a[], int i, int j)
      int t = a[i];
      a[i] = a[j];
      a[j] = t;


      private int[] shuffleArray(int a[])
      int i;
      for (i = 0; i < a.length; i++)
      a[i] = i;


      int z;
      Random rnd = ThreadLocalRandom.current();
      for (int j = a.length - 1; j > 0; j--)
      z = rnd.nextInt(j + 1);
      swap(a, z, j);

      return a;





      #include <jni.h>
      #include <stdio.h>
      #include <stdlib.h>
      #include <time.h>

      void quicksort(jint *a, jint x, jint y);

      jint partition(jint *a, jint x, jint y);

      void swap(jint *a, jint *b);


      JNIEXPORT void JNICALL
      Java_com_example_bill_androidredblacktree_QuicksortBenchmarks_QuicksortCPassArray(
      JNIEnv *env,
      jobject this,
      jintArray arr)

      jint *c_array = (*env)->GetIntArrayElements(env, arr, 0);

      jint n = (*env)->GetArrayLength(env, arr);

      quicksort(c_array, 0, n - 1);

      (*env)->ReleaseIntArrayElements(env, arr, c_array, 0);





      void quicksort(jint *a, jint x, jint y)
      jint q;
      if (x < y)
      q = partition(a, x, y);
      quicksort(a, x, q - 1);
      quicksort(a, q + 1, y);




      jint partition(jint *a, jint x, jint y)
      jint temp = *(a + y);
      jint i = x - 1;
      jint j;
      for (j = x; j <= y - 1; j++)
      if (*(a + j) <= temp)
      i++;
      jint temp1 = *(a + i);
      *(a + i) = *(a + j);
      *(a + j) = temp1;
      //swap(&a[i], &a[j]);


      jint temp2 = *(a + i + 1);
      *(a + i + 1) = *(a + y);
      *(a + y) = temp2;
      //swap(&a[i + 1], &a[y]);
      return (i + 1);



      void swap(jint *a, jint *b)
      jint temp = *a;
      *a = *b;
      *b = temp;







      java c android jni






      share|improve this question







      New contributor




      Bill is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Bill is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Bill is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 21 mins ago









      BillBill

      11




      11




      New contributor




      Bill is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Bill is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Bill is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          0






          active

          oldest

          votes












          Your Answer





          StackExchange.ifUsing("editor", function ()
          return StackExchange.using("mathjaxEditing", function ()
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
          );
          );
          , "mathjax-editing");

          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "196"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          Bill is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f217035%2fandroid-ndk-low-performance%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Bill is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          Bill is a new contributor. Be nice, and check out our Code of Conduct.












          Bill is a new contributor. Be nice, and check out our Code of Conduct.











          Bill is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Code Review Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f217035%2fandroid-ndk-low-performance%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          बाताम इन्हें भी देखें सन्दर्भ दिक्चालन सूची1°05′00″N 104°02′0″E / 1.08333°N 104.03333°E / 1.08333; 104.033331°05′00″N 104°02′0″E / 1.08333°N 104.03333°E / 1.08333; 104.03333

          Why is the 'in' operator throwing an error with a string literal instead of logging false?Why can't I use switch statement on a String?Python join: why is it string.join(list) instead of list.join(string)?Multiline String Literal in C#Why does comparing strings using either '==' or 'is' sometimes produce a different result?How to initialize an array's length in javascript?How can I print literal curly-brace characters in python string and also use .format on it?Why does ++[[]][+[]]+[+[]] return the string “10”?Why is char[] preferred over String for passwords?Why does this code using random strings print “hello world”?jQuery.inArray(), how to use it right?

          How can we generalize the fact of finite dimensional vector space to an infinte dimensional case?$k[x]$-module and cyclic module over a finite dimensional vector spaceSubspace of a finite dimensional space is finite dimensionalIf V is an infinite-dimensional vector space, and S is an infinite-dimensional subspace of V, must the dimension of V/S be finite? ExplainWhy is an infinite dimensional space so different than a finite dimensional one?base for finite dimensional vector space is not infinite dimensional vector space?Any finite-dimensional vector space is the dual space of anotherHaving Trouble Understanding Meaning Of A Finite-Dimensional Vector SpaceProve that “Every subspaces of a finite-dimensional vector space is finite-dimensional”Ring as a finite dimensional Vector space over a field KQuestion regarding basis and dimension