Re: [問題] 有關鏈結串列的問題

作者: Godfrey0216 (Godfrey)   2015-07-27 15:15:38
※ 引述《Godfrey0216 (Godfrey)》之銘言:
: 哈囉大家好唷,我想問一下大家,如果我現在手上有一筆存在矩陣中
: 的資料.我想用利用鏈結串列讓資料印出來,分別是正向跟反向
#include<stdio.h>
#include<stdlib.h>
#include <iostream>
#include <cmath>
using namespace std ;
int isPrime(int p)
{
int i;
for (i=2;i<=sqrt((double)p);i++)
{
if(p%i==0)
return 0 ;
}
return 1 ;
}
struct friendData {
int ans[1024];
};
struct linkedListNode {
struct friendData data;
struct linkedListNode *nextPtr;
};
typedef struct linkedListNode LinkedListNode;
int main()
{
LinkedListNode *startPtr, *newPtr, *currentPtr ;
startPtr = NULL;
int n , c ; int m ; int j ; int r ;
char ch ;
int num[1024] ;
cout << "請輸入N值 : " << endl ;
cin >> n ;
newPtr = (LinkedListNode *)malloc(sizeof(LinkedListNode));
for ( int i = 1 ; i <= n ; i++)
{
if( n%i ==0)
{
c++ ;
num[c] = i ;
cout << "第" << c << "個因數 : " << num[c] << endl ;
}
}
cout << "因數總個數為 : " << c << "個" << endl ;
cout << "====================================================" << endl;
for( int i = 1 ; i <=c ; i++ )
{
if(isPrime(num[i]))
cout << num[i] << "為質數" << endl;
else
cout << num[i] << "不為質數" << endl;
}
cout << "====================================================" << endl;
cout << "請選擇列印因數方法" << endl;
cout << "1) 正向列印出所有因數 " << endl;
cout << "2) 反向列印出所有因數 " << endl;
cout << "3) 離開 " << endl;
startPtr == NULL;
newPtr->data.ans;
newPtr->nextPtr = NULL;
if (startPtr == NULL) {
startPtr = newPtr;
}
else {
currentPtr = startPtr;
while (currentPtr != NULL) {
if (currentPtr->nextPtr == NULL) {
currentPtr->nextPtr = newPtr;
break;
}
currentPtr = currentPtr->nextPtr;
}
}
while(1){
ch = getchar();
switch(ch){
case '1' :
{
currentPtr = startPtr;
while (currentPtr != NULL)
cout << currentPtr-> data.ans <<endl;
currentPtr = currentPtr->nextPtr;
}
break ;
case '2' :
for (int i=c; i>0; i
作者: stupid0319 (徵女友)   2015-07-27 17:58:00
你先試著找看是哪一行印出0x5d5fd0??
作者: Frozenmouse (*冰之鼠*)   2015-07-27 19:19:00
你從頭到尾只配了一個node而且也沒寫資料進去@@另外為何你的node資料要是int陣列?
作者: Godfrey0216 (Godfrey)   2015-07-27 20:28:00
因為我要他存num[]裡面的值,所以開了個陣列給他
作者: Frozenmouse (*冰之鼠*)   2015-07-27 22:12:00
串列本身就是群集的概念,通常你是要存很多個int陣列才可能會這樣寫…我覺得你應該是想存int吧?XD
作者: Godfrey0216 (Godfrey)   2015-07-27 22:35:00
不,我在main()裡面有用陣列存了我全部的因數而我現在想用串列把這些因數print出來!

Links booklink

Contact Us: admin [ a t ] ucptt.com