No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
How will I run the below code in the background while I sign off or forget about it till is done? [CODE]for file in *; do `ffmpeg -i $file -ab 192k -ar 44100 -acodec libmp3lame /home/afrispot/audios /converted/$file.mp3`; done[/CODE] | |
hi my remove node is not working....can someone help me correct it // Polynomial.java public class Polynomial { private int degree; private Node head; public static Polynomial addPolys(Polynomial poly1, Polynomial poly2) { Polynomial polyRes = new Polynomial(); int power = (poly1.degree > poly2.degree) ? poly1.degree : poly2.degree; while (power >= … | |
Hi am new at java and I was wondering what would be a code to remove it if i provide the coeff I know is -Given the index you want to remove -set the node at the previous index to point to the node at the next index -set the … | |
I have a code to add a node...what would be a code to remove it if i provide the coeff [code]public void addNode(int coeff, int power) { if (head == null) // start the list { head = new Node(coeff, power, null); degree = power; } else { Node n … |
The End.